public final class AddAction extends Object implements UpdateAction, ToCopyableBuilder<AddAction.Builder,AddAction>
UpdateExpression
ADD action.
At a minimum, this action must contain a path string referencing the attribute that should be acted upon and a value string referencing the value to be added to the attribute. The value should be substituted with tokens using the ':value_token' syntax and values associated with the token must be explicitly added to the expressionValues map. Consult the DynamoDB UpdateExpression documentation for details on this action.
Optionally, attribute names can be substituted with tokens using the '#name_token' syntax. If tokens are used in the expression then the names associated with those tokens must be explicitly added to the expressionNames map that is also stored on this object.
Example:-
AddUpdateAction addAction = AddUpdateAction.builder()
.path("#a")
.value(":b")
.putExpressionName("#a", "attributeA")
.putExpressionValue(":b", myAttributeValue)
.build();
Modifier and Type | Class and Description |
---|---|
static class |
AddAction.Builder
A builder for
AddAction |
Modifier and Type | Method and Description |
---|---|
static AddAction.Builder |
builder()
Constructs a new builder for
AddAction . |
boolean |
equals(Object o) |
Map<String,String> |
expressionNames() |
Map<String,AttributeValue> |
expressionValues() |
int |
hashCode() |
String |
path() |
AddAction.Builder |
toBuilder() |
String |
value() |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
copy
public static AddAction.Builder builder()
AddAction
.public AddAction.Builder toBuilder()
toBuilder
in interface ToCopyableBuilder<AddAction.Builder,AddAction>
public String path()
public String value()
public Map<String,AttributeValue> expressionValues()
Copyright © 2022. All rights reserved.