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
Subclasses with type arguments of type ReturnValue in com.amazonaws.services.dynamodbv2.modelMethods in com.amazonaws.services.dynamodbv2.model that return ReturnValueModifier and TypeMethodDescriptionstatic ReturnValueUse this in place of valueOf.static ReturnValueReturns 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 TypeMethodDescriptionvoidDeleteItemRequest.setReturnValues(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.voidPutItemRequest.setReturnValues(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.voidUpdateItemRequest.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.