Uses of Class
com.amazonaws.services.dynamodbv2.model.ExpectedAttributeValue
-
Packages that use ExpectedAttributeValue Package Description com.amazonaws.services.dynamodbv2.datamodeling com.amazonaws.services.dynamodbv2.model -
-
Uses of ExpectedAttributeValue in com.amazonaws.services.dynamodbv2.datamodeling
Fields in com.amazonaws.services.dynamodbv2.datamodeling with type parameters of type ExpectedAttributeValue Modifier and Type Field Description protected Map<String,ExpectedAttributeValue>
DynamoDBMapper.SaveObjectHandler. userProvidedExpectedValueConditions
Additional expected value conditions specified by the user.Methods in com.amazonaws.services.dynamodbv2.datamodeling that return types with arguments of type ExpectedAttributeValue Modifier and Type Method Description Map<String,ExpectedAttributeValue>
DynamoDBDeleteExpression. getExpected()
Gets the map of attribute names to expected attribute values to check on delete.Map<String,ExpectedAttributeValue>
DynamoDBSaveExpression. getExpected()
Gets the map of attribute names to expected attribute values to check on save.protected Map<String,ExpectedAttributeValue>
DynamoDBMapper.SaveObjectHandler. mergeExpectedAttributeValueConditions()
Merge and return all the expected value conditions (either user-specified or imposed by the internal implementation of DynamoDBMapper) for this save operation.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type ExpectedAttributeValue Modifier and Type Method Description DynamoDBDeleteExpression
DynamoDBDeleteExpression. withExpectedEntry(String attributeName, ExpectedAttributeValue expected)
Adds one entry to the expected conditions and returns a pointer to this object for method-chaining.DynamoDBSaveExpression
DynamoDBSaveExpression. withExpectedEntry(String attributeName, ExpectedAttributeValue expected)
Adds one entry to the expected conditions and returns a pointer to this object for method-chaining.Method parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type ExpectedAttributeValue Modifier and Type Method Description void
DynamoDBDeleteExpression. setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given.void
DynamoDBSaveExpression. setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given.DynamoDBDeleteExpression
DynamoDBDeleteExpression. withExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given and returns a pointer to this object for method-chaining.DynamoDBSaveExpression
DynamoDBSaveExpression. withExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given and returns a pointer to this object for method-chaining. -
Uses of ExpectedAttributeValue in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return ExpectedAttributeValue Modifier and Type Method Description ExpectedAttributeValue
ExpectedAttributeValue. clone()
ExpectedAttributeValue
ExpectedAttributeValue. withAttributeValueList(AttributeValue... attributeValueList)
One or more values to evaluate against the supplied attribute.ExpectedAttributeValue
ExpectedAttributeValue. withAttributeValueList(Collection<AttributeValue> attributeValueList)
One or more values to evaluate against the supplied attribute.ExpectedAttributeValue
ExpectedAttributeValue. withComparisonOperator(ComparisonOperator comparisonOperator)
A comparator for evaluating attributes in the AttributeValueList.ExpectedAttributeValue
ExpectedAttributeValue. withComparisonOperator(String comparisonOperator)
A comparator for evaluating attributes in the AttributeValueList.ExpectedAttributeValue
ExpectedAttributeValue. withExists(Boolean exists)
Causes DynamoDB to evaluate the value before attempting a conditional operation:ExpectedAttributeValue
ExpectedAttributeValue. withValue(AttributeValue value)
Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type ExpectedAttributeValue Modifier and Type Method Description Map<String,ExpectedAttributeValue>
DeleteItemRequest. getExpected()
Map<String,ExpectedAttributeValue>
PutItemRequest. getExpected()
Map<String,ExpectedAttributeValue>
UpdateItemRequest. getExpected()
Methods in com.amazonaws.services.dynamodbv2.model with parameters of type ExpectedAttributeValue Modifier and Type Method Description DeleteItemRequest
DeleteItemRequest. addExpectedEntry(String key, ExpectedAttributeValue value)
PutItemRequest
PutItemRequest. addExpectedEntry(String key, ExpectedAttributeValue value)
UpdateItemRequest
UpdateItemRequest. addExpectedEntry(String key, ExpectedAttributeValue value)
Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type ExpectedAttributeValue Modifier and Type Method Description void
DeleteItemRequest. setExpected(Map<String,ExpectedAttributeValue> expected)
void
PutItemRequest. setExpected(Map<String,ExpectedAttributeValue> expected)
void
UpdateItemRequest. setExpected(Map<String,ExpectedAttributeValue> expected)
DeleteItemRequest
DeleteItemRequest. withExpected(Map<String,ExpectedAttributeValue> expected)
PutItemRequest
PutItemRequest. withExpected(Map<String,ExpectedAttributeValue> expected)
UpdateItemRequest
UpdateItemRequest. withExpected(Map<String,ExpectedAttributeValue> expected)
-