Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBSaveExpression |
DynamoDBSaveExpression.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 |
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 |
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 |
DynamoDBSaveExpression.withExpectedEntry(String attributeName,
ExpectedAttributeValue expected)
Adds one entry to the expected conditions and returns a pointer to this
object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
void |
DynamoDBTableMapper.save(T object,
DynamoDBSaveExpression saveExpression)
Saves the object given into DynamoDB using the specified saveExpression.
|
<T> void |
IDynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression)
Saves the object given into DynamoDB, using the default configuration and the specified
saveExpression.
|
<T> void |
AbstractDynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression) |
<T> void |
DynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression,
DynamoDBMapperConfig config) |
<T> void |
IDynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression,
DynamoDBMapperConfig config)
Saves an item in DynamoDB.
|
<T> void |
AbstractDynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression,
DynamoDBMapperConfig config) |
Constructor and Description |
---|
SaveObjectHandler(Class<?> clazz,
Object object,
String tableName,
DynamoDBMapperConfig saveConfig,
DynamoDBSaveExpression saveExpression)
Constructs a handler for saving the specified model object.
|
Copyright © 2019. All rights reserved.