Uses of Class
com.amazonaws.services.dynamodbv2.model.ReturnValue
-
Packages that use ReturnValue Package Description com.amazonaws.services.dynamodbv2.document.spec com.amazonaws.services.dynamodbv2.model -
-
Uses of ReturnValue in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type ReturnValue Modifier and Type Method Description DeleteItemSpecDeleteItemSpec. withReturnValues(ReturnValue returnValues)PutItemSpecPutItemSpec. withReturnValues(ReturnValue returnValues)UpdateItemSpecUpdateItemSpec. withReturnValues(ReturnValue returnValues) -
Uses of ReturnValue in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return ReturnValue Modifier and Type Method Description static ReturnValueReturnValue. fromValue(String value)Use this in place of valueOf.static ReturnValueReturnValue. valueOf(String name)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 ReturnValue Modifier and Type Method Description voidDeleteItemRequest. 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.DeleteItemRequestDeleteItemRequest. withReturnValues(ReturnValue returnValues)Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.PutItemRequestPutItemRequest. withReturnValues(ReturnValue returnValues)Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.UpdateItemRequestUpdateItemRequest. 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 ReturnValue Constructor Description DeleteItemRequest(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.
-