Uses of Class
com.amazonaws.services.dynamodbv2.model.ExpectedAttributeValue

Packages that use ExpectedAttributeValue
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of ExpectedAttributeValue in com.amazonaws.services.dynamodbv2.datamodeling
 

Fields in com.amazonaws.services.dynamodbv2.datamodeling with type parameters of type ExpectedAttributeValue
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
 Map<String,ExpectedAttributeValue> DynamoDBSaveExpression.getExpected()
          Gets the map of attribute names to expected attribute values to check on save.
 Map<String,ExpectedAttributeValue> DynamoDBDeleteExpression.getExpected()
          Gets the map of attribute names to expected attribute values to check on delete.
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
 DynamoDBSaveExpression DynamoDBSaveExpression.withExpectedEntry(String attributeName, ExpectedAttributeValue expected)
          Adds one entry to the expected conditions and returns a pointer to this object for method-chaining.
 DynamoDBDeleteExpression DynamoDBDeleteExpression.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
 void DynamoDBSaveExpression.setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
          Sets the expected condition to the map of attribute names to expected attribute values given.
 void DynamoDBDeleteExpression.setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
          Sets the expected condition to the map of attribute names to expected attribute values given.
 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.
 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.
 

Uses of ExpectedAttributeValue in com.amazonaws.services.dynamodbv2.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return ExpectedAttributeValue
 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)
          Represents the data for an attribute.
 

Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type ExpectedAttributeValue
 Map<String,ExpectedAttributeValue> UpdateItemRequest.getExpected()
          A map of attribute/condition pairs.
 Map<String,ExpectedAttributeValue> PutItemRequest.getExpected()
          A map of attribute/condition pairs.
 Map<String,ExpectedAttributeValue> DeleteItemRequest.getExpected()
          A map of attribute/condition pairs.
 

Methods in com.amazonaws.services.dynamodbv2.model with parameters of type ExpectedAttributeValue
 UpdateItemRequest UpdateItemRequest.addExpectedEntry(String key, ExpectedAttributeValue value)
          A map of attribute/condition pairs.
 PutItemRequest PutItemRequest.addExpectedEntry(String key, ExpectedAttributeValue value)
          A map of attribute/condition pairs.
 DeleteItemRequest DeleteItemRequest.addExpectedEntry(String key, ExpectedAttributeValue value)
          A map of attribute/condition pairs.
 

Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type ExpectedAttributeValue
 void UpdateItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 void PutItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 void DeleteItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 UpdateItemRequest UpdateItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 PutItemRequest PutItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 DeleteItemRequest DeleteItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 



Copyright © 2016. All rights reserved.