Interface BatchUpdatePartitionRequestEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchUpdatePartitionRequestEntry.Builder,BatchUpdatePartitionRequestEntry>,SdkBuilder<BatchUpdatePartitionRequestEntry.Builder,BatchUpdatePartitionRequestEntry>,SdkPojo
- Enclosing class:
- BatchUpdatePartitionRequestEntry
public static interface BatchUpdatePartitionRequestEntry.Builder extends SdkPojo, CopyableBuilder<BatchUpdatePartitionRequestEntry.Builder,BatchUpdatePartitionRequestEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchUpdatePartitionRequestEntry.BuilderpartitionInput(Consumer<PartitionInput.Builder> partitionInput)The structure used to update a partition.BatchUpdatePartitionRequestEntry.BuilderpartitionInput(PartitionInput partitionInput)The structure used to update a partition.BatchUpdatePartitionRequestEntry.BuilderpartitionValueList(String... partitionValueList)A list of values defining the partitions.BatchUpdatePartitionRequestEntry.BuilderpartitionValueList(Collection<String> partitionValueList)A list of values defining the partitions.-
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
-
partitionValueList
BatchUpdatePartitionRequestEntry.Builder partitionValueList(Collection<String> partitionValueList)
A list of values defining the partitions.
- Parameters:
partitionValueList- A list of values defining the partitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValueList
BatchUpdatePartitionRequestEntry.Builder partitionValueList(String... partitionValueList)
A list of values defining the partitions.
- Parameters:
partitionValueList- A list of values defining the partitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionInput
BatchUpdatePartitionRequestEntry.Builder partitionInput(PartitionInput partitionInput)
The structure used to update a partition.
- Parameters:
partitionInput- The structure used to update a partition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionInput
default BatchUpdatePartitionRequestEntry.Builder partitionInput(Consumer<PartitionInput.Builder> partitionInput)
The structure used to update a partition.
This is a convenience method that creates an instance of thePartitionInput.Builderavoiding the need to create one manually viaPartitionInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topartitionInput(PartitionInput).- Parameters:
partitionInput- a consumer that will call methods onPartitionInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
partitionInput(PartitionInput)
-
-