@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:37:00.900Z") public enum DynamoReturnValues extends java.lang.Enum<DynamoReturnValues>
Enum Constant and Description |
---|
ALL_NEW
Returns all of the attributes of the item.
|
ALL_OLD
Returns all of the attributes of the item.
|
NONE
Nothing is returned.
|
UPDATED_NEW
Returns only the updated attributes.
|
UPDATED_OLD
Returns only the updated attributes.
|
Modifier and Type | Method and Description |
---|---|
static DynamoReturnValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DynamoReturnValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamoReturnValues NONE
public static final DynamoReturnValues ALL_OLD
public static final DynamoReturnValues UPDATED_OLD
public static final DynamoReturnValues ALL_NEW
public static final DynamoReturnValues UPDATED_NEW
public static DynamoReturnValues[] values()
for (DynamoReturnValues c : DynamoReturnValues.values()) System.out.println(c);
public static DynamoReturnValues 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