@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2023-01-03T16:22:40.640Z") @Stability(value=Deprecated) @Deprecated public enum InvocationType extends Enum<InvocationType>
| Enum Constant and Description |
|---|
DRY_RUN
Deprecated.
|
EVENT
Deprecated.
|
REQUEST_RESPONSE
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static InvocationType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Deprecated) @Deprecated public static final InvocationType REQUEST_RESPONSE
The API response includes the function response and additional data.
@Stability(value=Deprecated) @Deprecated public static final InvocationType EVENT
Send events that fail multiple times to the function's dead-letter queue (if it's configured). The API response only includes a status code.
@Stability(value=Deprecated) @Deprecated public static final InvocationType DRY_RUN
public static InvocationType[] values()
for (InvocationType c : InvocationType.values()) System.out.println(c);
public static InvocationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.