Uses of Enum
com.amazonaws.services.dynamodbv2.model.ReturnValue
Packages that use ReturnValue
Package
Description
-
Uses of ReturnValue in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type ReturnValueModifier and TypeMethodDescriptionDeleteItemSpec.withReturnValues
(ReturnValue returnValues) PutItemSpec.withReturnValues
(ReturnValue returnValues) UpdateItemSpec.withReturnValues
(ReturnValue returnValues) -
Uses of ReturnValue in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return ReturnValueModifier and TypeMethodDescriptionstatic ReturnValue
Use this in place of valueOf.static ReturnValue
Returns the enum constant of this type with the specified name.static ReturnValue[]
ReturnValue.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.amazonaws.services.dynamodbv2.model with parameters of type ReturnValueModifier and TypeMethodDescriptionvoid
DeleteItemRequest.setReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.void
PutItemRequest.setReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.void
UpdateItemRequest.setReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.DeleteItemRequest.withReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.PutItemRequest.withReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.UpdateItemRequest.withReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.Constructors in com.amazonaws.services.dynamodbv2.model with parameters of type ReturnValueModifierConstructorDescriptionDeleteItemRequest
(String tableName, Map<String, AttributeValue> key, ReturnValue returnValues) Constructs a new DeleteItemRequest object.PutItemRequest
(String tableName, Map<String, AttributeValue> item, ReturnValue returnValues) Constructs a new PutItemRequest object.UpdateItemRequest
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, ReturnValue returnValues) Constructs a new UpdateItemRequest object.