@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-14T16:25:36.139Z") @Deprecated public enum InvocationType extends java.lang.Enum<InvocationType>
Enum Constant and Description |
---|
DRY_RUN
Deprecated.
|
EVENT
Deprecated.
|
REQUEST_RESPONSE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static InvocationType |
valueOf(java.lang.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.
|
@Deprecated public static final InvocationType REQUEST_RESPONSE
The API response includes the function response and additional data.
@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.
@Deprecated public static final InvocationType DRY_RUN
public static InvocationType[] values()
for (InvocationType c : InvocationType.values()) System.out.println(c);
public static InvocationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null