Uses of Class
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBDeleteExpression
Packages that use DynamoDBDeleteExpression
-
Uses of DynamoDBDeleteExpression in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBDeleteExpressionModifier and TypeMethodDescriptionDynamoDBDeleteExpression.addExpressionAttributeNamesEntry(String key, String value) One or more substitution variables for simplifying complex expressions.DynamoDBDeleteExpression.addExpressionAttributeValuesEntry(String key, AttributeValue value) One or more values that can be substituted in an expression.DynamoDBDeleteExpression.clearExpressionAttributeNamesEntries()Removes all the entries added into ExpressionAttributeNames.DynamoDBDeleteExpression.clearExpressionAttributeValuesEntries()Removes all the entries added into ExpressionAttributeValues.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.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.withConditionExpression(String conditionExpression) A condition that must be satisfied in order for a conditional DeleteItem to succeed.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.withExpectedEntry(String attributeName, ExpectedAttributeValue expected) Adds one entry to the expected conditions and returns a pointer to this object for method-chaining.DynamoDBDeleteExpression.withExpressionAttributeNames(Map<String, String> expressionAttributeNames) One or more substitution variables for simplifying complex expressions.DynamoDBDeleteExpression.withExpressionAttributeValues(Map<String, AttributeValue> expressionAttributeValues) One or more values that can be substituted in an expression.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBDeleteExpressionModifier and TypeMethodDescriptionvoidAbstractDynamoDBMapper.delete(Object object, DynamoDBDeleteExpression deleteExpression) <T> voidAbstractDynamoDBMapper.delete(T object, DynamoDBDeleteExpression deleteExpression, DynamoDBMapperConfig config) voidDynamoDBMapper.delete(Object object, DynamoDBDeleteExpression deleteExpression) <T> voidDynamoDBMapper.delete(T object, DynamoDBDeleteExpression deleteExpression, DynamoDBMapperConfig config) voidIDynamoDBMapper.delete(Object object, DynamoDBDeleteExpression deleteExpression) Deletes the given object from its DynamoDB table using the specified deleteExpression and default configuration.<T> voidIDynamoDBMapper.delete(T object, DynamoDBDeleteExpression deleteExpression, DynamoDBMapperConfig config) Deletes the given object from its DynamoDB table using the provided deleteExpression and provided configuration.