Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.withConditionalOperator(ConditionalOperator conditionalOperator)
Sets the logical operator on the expected attribute conditions of this
delete operation and returns a pointer to this object for
method-chaining.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.withConditionalOperator(String conditionalOperator)
Sets the logical operator on the expected attribute conditions of this
delete operation 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.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.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 |
DynamoDBMapper.delete(Object object,
DynamoDBDeleteExpression deleteExpression)
Deletes the given object from its DynamoDB table using the specified deleteExpression and default configuration.
|
<T> void |
DynamoDBMapper.delete(T object,
DynamoDBDeleteExpression deleteExpression,
DynamoDBMapperConfig config)
Deletes the given object from its DynamoDB table using the provided deleteExpression and provided configuration.
|
Copyright © 2014. All rights reserved.