Interface CopyValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CopyValue.Builder,CopyValue>,SdkBuilder<CopyValue.Builder,CopyValue>,SdkPojo
- Enclosing class:
- CopyValue
public static interface CopyValue.Builder extends SdkPojo, CopyableBuilder<CopyValue.Builder,CopyValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CopyValue.Builderentries(Collection<CopyValueEntry> entries)An array ofCopyValueEntryobjects, where each object contains the information about one field value to copy.CopyValue.Builderentries(Consumer<CopyValueEntry.Builder>... entries)An array ofCopyValueEntryobjects, where each object contains the information about one field value to copy.CopyValue.Builderentries(CopyValueEntry... entries)An array ofCopyValueEntryobjects, where each object contains the information about one field value to copy.-
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
CopyValue.Builder entries(Collection<CopyValueEntry> entries)
An array of
CopyValueEntryobjects, where each object contains the information about one field value to copy.- Parameters:
entries- An array ofCopyValueEntryobjects, where each object contains the information about one field value to copy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
CopyValue.Builder entries(CopyValueEntry... entries)
An array of
CopyValueEntryobjects, where each object contains the information about one field value to copy.- Parameters:
entries- An array ofCopyValueEntryobjects, where each object contains the information about one field value to copy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
CopyValue.Builder entries(Consumer<CopyValueEntry.Builder>... entries)
An array of
This is a convenience method that creates an instance of theCopyValueEntryobjects, where each object contains the information about one field value to copy.CopyValueEntry.Builderavoiding the need to create one manually viaCopyValueEntry.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 onCopyValueEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
-