Uses of Class
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBSaveExpression
Packages that use DynamoDBSaveExpression
-
Uses of DynamoDBSaveExpression in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBSaveExpressionModifier and TypeMethodDescriptionDynamoDBSaveExpression.withConditionalOperator
(ConditionalOperator conditionalOperator) Sets the logical operator on the expected value conditions of this save operation and returns a pointer to this object for method-chaining.DynamoDBSaveExpression.withConditionalOperator
(String conditionalOperator) Sets the logical operator on the expected value conditions of this save operation and returns a pointer to this object for method-chaining.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.DynamoDBSaveExpression.withExpectedEntry
(String attributeName, ExpectedAttributeValue expected) Adds one entry to the expected conditions and returns a pointer to this object for method-chaining.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBSaveExpressionModifier and TypeMethodDescription<T> void
AbstractDynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression) <T> void
AbstractDynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression, DynamoDBMapperConfig config) <T> void
DynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression) <T> void
DynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression, DynamoDBMapperConfig config) <T> void
IDynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression) Saves the object given into DynamoDB, using the default configuration and the specified saveExpression.<T> void
IDynamoDBMapper.save
(T object, DynamoDBSaveExpression saveExpression, DynamoDBMapperConfig config) Saves an item in DynamoDB.Constructors in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBSaveExpressionModifierConstructorDescriptionSaveObjectHandler
(Class<?> clazz, Object object, String tableName, DynamoDBMapperConfig saveConfig, ItemConverter converter, DynamoDBSaveExpression saveExpression) Constructs a handler for saving the specified model object.