Interface MoveKeyEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MoveKeyEntry.Builder,MoveKeyEntry>,SdkBuilder<MoveKeyEntry.Builder,MoveKeyEntry>,SdkPojo
- Enclosing class:
- MoveKeyEntry
public static interface MoveKeyEntry.Builder extends SdkPojo, CopyableBuilder<MoveKeyEntry.Builder,MoveKeyEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MoveKeyEntry.BuilderoverwriteIfExists(Boolean overwriteIfExists)Specifies whether to overwrite the value if the destination key already exists.MoveKeyEntry.Buildersource(String source)The key to move.MoveKeyEntry.Buildertarget(String target)The key to move 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
MoveKeyEntry.Builder source(String source)
The key to move.
- Parameters:
source- The key to move.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
MoveKeyEntry.Builder target(String target)
The key to move to.
- Parameters:
target- The key to move to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overwriteIfExists
MoveKeyEntry.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.
-
-