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 DeleteItemSpec
DeleteItemSpec. withReturnValues(ReturnValue returnValues)
PutItemSpec
PutItemSpec. withReturnValues(ReturnValue returnValues)
UpdateItemSpec
UpdateItemSpec. 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 ReturnValue
ReturnValue. fromValue(String value)
Use this in place of valueOf.static ReturnValue
ReturnValue. 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 void
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
DeleteItemRequest. withReturnValues(ReturnValue returnValues)
Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.PutItemRequest
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
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 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.
-