java.lang.Object
software.amazon.awssdk.enhanced.dynamodb.update.AddAction
All Implemented Interfaces:
UpdateAction, ToCopyableBuilder<AddAction.Builder,AddAction>

public final class AddAction extends Object implements UpdateAction, ToCopyableBuilder<AddAction.Builder,AddAction>
A representation of a single 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();