Class RemoveAction.Builder
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.update.RemoveAction.Builder
-
- All Implemented Interfaces:
Buildable
,CopyableBuilder<RemoveAction.Builder,RemoveAction>
,SdkBuilder<RemoveAction.Builder,RemoveAction>
- Enclosing class:
- RemoveAction
public static final class RemoveAction.Builder extends Object implements CopyableBuilder<RemoveAction.Builder,RemoveAction>
A builder forRemoveAction
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RemoveAction
build()
Builds anRemoveAction
based on the values stored in this builder.RemoveAction.Builder
expressionNames(Map<String,String> expressionNames)
Sets the optional 'expression names' token map, overriding any existing values.RemoveAction.Builder
path(String path)
A string expression representing the attribute to removeRemoveAction.Builder
putExpressionName(String key, String value)
Adds a single element to the optional 'expression names' token map.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
-
-
-
-
Method Detail
-
path
public RemoveAction.Builder path(String path)
A string expression representing the attribute to remove
-
expressionNames
public RemoveAction.Builder expressionNames(Map<String,String> expressionNames)
Sets the optional 'expression names' token map, overriding any existing values. Use if the attribute references in the path expression are token ('expression attribute names') prepended with the '#' (pound) sign. It should map from token name to real attribute name.- See Also:
putExpressionName(String, String)
-
putExpressionName
public RemoveAction.Builder putExpressionName(String key, String value)
Adds a single element to the optional 'expression names' token map.- See Also:
expressionNames(Map)
-
build
public RemoveAction build()
Builds anRemoveAction
based on the values stored in this builder.- Specified by:
build
in interfaceBuildable
- Specified by:
build
in interfaceSdkBuilder<RemoveAction.Builder,RemoveAction>
-
-