Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.addExpressionAttributeNamesEntry(String key,
String value)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.addExpressionAttributeValuesEntry(String key,
AttributeValue value)
One or more values that can be substituted in an expression.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.
|
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.withConditionExpression(String conditionExpression)
A condition that must be satisfied in order for a conditional DeleteItem
to succeed.
|
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.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.withExpressionAttributeValues(Map<String,AttributeValue> expressionAttributeValues)
One or more values that can be substituted in an expression.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractDynamoDBMapper.delete(Object object,
DynamoDBDeleteExpression deleteExpression) |
void |
IDynamoDBMapper.delete(Object object,
DynamoDBDeleteExpression deleteExpression)
Deletes the given object from its DynamoDB table using the specified deleteExpression and
default configuration.
|
void |
DynamoDBTableMapper.delete(T object,
DynamoDBDeleteExpression deleteExpression)
Deletes the given object from its DynamoDB table using the specified
deleteExpression.
|
<T> void |
AbstractDynamoDBMapper.delete(T object,
DynamoDBDeleteExpression deleteExpression,
DynamoDBMapperConfig config) |
<T> void |
IDynamoDBMapper.delete(T object,
DynamoDBDeleteExpression deleteExpression,
DynamoDBMapperConfig config)
Deletes the given object from its DynamoDB table using the provided deleteExpression and
provided configuration.
|
<T> void |
DynamoDBMapper.delete(T object,
DynamoDBDeleteExpression deleteExpression,
DynamoDBMapperConfig config) |
Copyright © 2020. All rights reserved.