Uses of Class
software.amazon.awssdk.enhanced.dynamodb.update.UpdateExpression.Builder
-
Packages that use UpdateExpression.Builder Package Description software.amazon.awssdk.enhanced.dynamodb.update -
-
Uses of UpdateExpression.Builder in software.amazon.awssdk.enhanced.dynamodb.update
Methods in software.amazon.awssdk.enhanced.dynamodb.update that return UpdateExpression.Builder Modifier and Type Method Description UpdateExpression.Builder
UpdateExpression.Builder. actions(List<? extends UpdateAction> actions)
Adds a list ofUpdateAction
of any subtype to the builder, overwriting any previous values.UpdateExpression.Builder
UpdateExpression.Builder. actions(UpdateAction... actions)
Adds a list ofUpdateAction
of any subtype to the builder, overwriting any previous values.UpdateExpression.Builder
UpdateExpression.Builder. addAction(AddAction action)
Add an action of typeAddAction
UpdateExpression.Builder
UpdateExpression.Builder. addAction(DeleteAction action)
Add an action of typeDeleteAction
UpdateExpression.Builder
UpdateExpression.Builder. addAction(RemoveAction action)
Add an action of typeRemoveAction
UpdateExpression.Builder
UpdateExpression.Builder. addAction(SetAction action)
Add an action of typeSetAction
static UpdateExpression.Builder
UpdateExpression. builder()
Constructs a new builder forUpdateExpression
.
-