Package | Description |
---|---|
com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper |
Primary classes for interacting with the DynamoDB Object Mapper mobile connector for easily storing Java objects in the cloud.
|
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 |
---|---|
<T> void |
DynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression)
Saves the object given into DynamoDB, using the default configuration and
the specified saveExpression.
|
<T> void |
DynamoDBMapper.save(T object,
DynamoDBSaveExpression saveExpression,
DynamoDBMapperConfig config)
Saves an item in DynamoDB.
|
Constructor and Description |
---|
SaveObjectHandler(Class<?> clazz,
Object object,
String tableName,
DynamoDBMapperConfig saveConfig,
ItemConverter converter,
DynamoDBSaveExpression saveExpression)
Constructs a handler for saving the specified model object.
|
Copyright © 2019. All rights reserved.