Interface MoveKeys.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MoveKeys.Builder,MoveKeys>,SdkBuilder<MoveKeys.Builder,MoveKeys>,SdkPojo
- Enclosing class:
- MoveKeys
public static interface MoveKeys.Builder extends SdkPojo, CopyableBuilder<MoveKeys.Builder,MoveKeys>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MoveKeys.Builderentries(Collection<MoveKeyEntry> entries)An array of objects, where each object contains the information about one key to move.MoveKeys.Builderentries(Consumer<MoveKeyEntry.Builder>... entries)An array of objects, where each object contains the information about one key to move.MoveKeys.Builderentries(MoveKeyEntry... entries)An array of objects, where each object contains the information about one key to move.-
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
-
entries
MoveKeys.Builder entries(Collection<MoveKeyEntry> entries)
An array of objects, where each object contains the information about one key to move.
- Parameters:
entries- An array of objects, where each object contains the information about one key to move.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
MoveKeys.Builder entries(MoveKeyEntry... entries)
An array of objects, where each object contains the information about one key to move.
- Parameters:
entries- An array of objects, where each object contains the information about one key to move.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
MoveKeys.Builder entries(Consumer<MoveKeyEntry.Builder>... entries)
An array of objects, where each object contains the information about one key to move.
This is a convenience method that creates an instance of theMoveKeyEntry.Builderavoiding the need to create one manually viaMoveKeyEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onMoveKeyEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
-