Uses of Class
software.amazon.awssdk.enhanced.dynamodb.update.UpdateExpression
-
-
Uses of UpdateExpression in software.amazon.awssdk.enhanced.dynamodb.extensions
Methods in software.amazon.awssdk.enhanced.dynamodb.extensions that return UpdateExpression Modifier and Type Method Description UpdateExpression
WriteModification. updateExpression()
Methods in software.amazon.awssdk.enhanced.dynamodb.extensions with parameters of type UpdateExpression Modifier and Type Method Description WriteModification.Builder
WriteModification.Builder. updateExpression(UpdateExpression updateExpression)
-
Uses of UpdateExpression in software.amazon.awssdk.enhanced.dynamodb.internal.update
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.update that return UpdateExpression Modifier and Type Method Description static UpdateExpression
UpdateExpressionUtils. operationExpression(Map<String,AttributeValue> itemMap, TableMetadata tableMetadata, List<String> nonRemoveAttributes)
Generates an UpdateExpression representing a POJO, with only SET and REMOVE actions.Methods in software.amazon.awssdk.enhanced.dynamodb.internal.update with parameters of type UpdateExpression Modifier and Type Method Description static List<String>
UpdateExpressionConverter. findAttributeNames(UpdateExpression updateExpression)
Attempts to find the list of attribute names that will be updated for the suppliedUpdateExpression
by looking at the combined collection of paths and ExpressionName values.static Expression
UpdateExpressionConverter. toExpression(UpdateExpression expression)
Returns anExpression
where all update actions in the UpdateExpression have been concatenated according to the rules of DDB Update Expressions, and all expression names and values have been combined into single maps, respectively. -
Uses of UpdateExpression in software.amazon.awssdk.enhanced.dynamodb.update
Methods in software.amazon.awssdk.enhanced.dynamodb.update that return UpdateExpression Modifier and Type Method Description UpdateExpression
UpdateExpression.Builder. build()
Builds anUpdateExpression
based on the values stored in this builder.static UpdateExpression
UpdateExpression. mergeExpressions(UpdateExpression expression1, UpdateExpression expression2)
Merges two UpdateExpression, returning a newMethods in software.amazon.awssdk.enhanced.dynamodb.update with parameters of type UpdateExpression Modifier and Type Method Description static UpdateExpression
UpdateExpression. mergeExpressions(UpdateExpression expression1, UpdateExpression expression2)
Merges two UpdateExpression, returning a new
-