Interface CopyValueEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CopyValueEntry.Builder,CopyValueEntry>,SdkBuilder<CopyValueEntry.Builder,CopyValueEntry>,SdkPojo
- Enclosing class:
- CopyValueEntry
public static interface CopyValueEntry.Builder extends SdkPojo, CopyableBuilder<CopyValueEntry.Builder,CopyValueEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CopyValueEntry.BuilderoverwriteIfExists(Boolean overwriteIfExists)Specifies whether to overwrite the value if the destination key already exists.CopyValueEntry.Buildersource(String source)The key to copy.CopyValueEntry.Buildertarget(String target)The key of the field to copy the value to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
source
CopyValueEntry.Builder source(String source)
The key to copy.
- Parameters:
source- The key to copy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
CopyValueEntry.Builder target(String target)
The key of the field to copy the value to.
- Parameters:
target- The key of the field to copy the value to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overwriteIfExists
CopyValueEntry.Builder overwriteIfExists(Boolean overwriteIfExists)
Specifies whether to overwrite the value if the destination key already exists. If you omit this, the default is
false.- Parameters:
overwriteIfExists- Specifies whether to overwrite the value if the destination key already exists. If you omit this, the default isfalse.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-