Modifier and Type | Field and Description |
---|---|
protected Map<String,ExpectedAttributeValue> |
DynamoDBMapper.SaveObjectHandler.userProvidedExpectedValueConditions
Additional expected value conditions specified by the user.
|
Modifier and Type | Method and Description |
---|---|
Map<String,ExpectedAttributeValue> |
DynamoDBDeleteExpression.getExpected()
Gets the map of attribute names to expected attribute values to check on delete.
|
Map<String,ExpectedAttributeValue> |
DynamoDBSaveExpression.getExpected()
Gets the map of attribute names to expected attribute values to check on save.
|
protected Map<String,ExpectedAttributeValue> |
DynamoDBMapper.SaveObjectHandler.mergeExpectedAttributeValueConditions()
Merge and return all the expected value conditions (either
user-specified or imposed by the internal implementation of
DynamoDBMapper) for this save operation.
|
Modifier and Type | Method and Description |
---|---|
DynamoDBDeleteExpression |
DynamoDBDeleteExpression.withExpectedEntry(String attributeName,
ExpectedAttributeValue expected)
Adds one entry to the expected conditions 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 |
DynamoDBDeleteExpression.setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given.
|
void |
DynamoDBSaveExpression.setExpected(Map<String,ExpectedAttributeValue> expectedAttributes)
Sets the expected condition to the map of attribute names to expected attribute values given.
|
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static Map<String,ExpectedAttributeValue> |
ItemUtils.toExpectedAttributeValueMap(Collection<Expected> expectedSet)
Returns the low level representation of a collection of
Expected . |
Modifier and Type | Method and Description |
---|---|
static Map<String,ExpectedAttributeValue> |
InternalUtils.toExpectedAttributeValueMap(Collection<Expected> expectedSet)
Deprecated.
Returns the low level representation of a collection of
Expected . |
Modifier and Type | Method and Description |
---|---|
ExpectedAttributeValue |
ExpectedAttributeValue.clone() |
ExpectedAttributeValue |
ExpectedAttributeValue.withAttributeValueList(AttributeValue... attributeValueList)
One or more values to evaluate against the supplied attribute.
|
ExpectedAttributeValue |
ExpectedAttributeValue.withAttributeValueList(Collection<AttributeValue> attributeValueList)
One or more values to evaluate against the supplied attribute.
|
ExpectedAttributeValue |
ExpectedAttributeValue.withComparisonOperator(ComparisonOperator comparisonOperator)
A comparator for evaluating attributes in the
AttributeValueList . |
ExpectedAttributeValue |
ExpectedAttributeValue.withComparisonOperator(String comparisonOperator)
A comparator for evaluating attributes in the
AttributeValueList . |
ExpectedAttributeValue |
ExpectedAttributeValue.withExists(Boolean exists)
Causes DynamoDB to evaluate the value before attempting a conditional operation:
|
ExpectedAttributeValue |
ExpectedAttributeValue.withValue(AttributeValue value)
Represents the data for the expected attribute.
|
Modifier and Type | Method and Description |
---|---|
Map<String,ExpectedAttributeValue> |
UpdateItemRequest.getExpected()
This is a legacy parameter.
|
Map<String,ExpectedAttributeValue> |
PutItemRequest.getExpected()
This is a legacy parameter.
|
Map<String,ExpectedAttributeValue> |
DeleteItemRequest.getExpected()
This is a legacy parameter.
|
Modifier and Type | Method and Description |
---|---|
UpdateItemRequest |
UpdateItemRequest.addExpectedEntry(String key,
ExpectedAttributeValue value) |
PutItemRequest |
PutItemRequest.addExpectedEntry(String key,
ExpectedAttributeValue value) |
DeleteItemRequest |
DeleteItemRequest.addExpectedEntry(String key,
ExpectedAttributeValue value) |
Modifier and Type | Method and Description |
---|---|
void |
UpdateItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
void |
PutItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
void |
DeleteItemRequest.setExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
UpdateItemRequest |
UpdateItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
PutItemRequest |
PutItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
DeleteItemRequest |
DeleteItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
This is a legacy parameter.
|
Copyright © 2018. All rights reserved.