Interface BatchUpdatePartitionFailureEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchUpdatePartitionFailureEntry.Builder,BatchUpdatePartitionFailureEntry>,SdkBuilder<BatchUpdatePartitionFailureEntry.Builder,BatchUpdatePartitionFailureEntry>,SdkPojo
- Enclosing class:
- BatchUpdatePartitionFailureEntry
public static interface BatchUpdatePartitionFailureEntry.Builder extends SdkPojo, CopyableBuilder<BatchUpdatePartitionFailureEntry.Builder,BatchUpdatePartitionFailureEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchUpdatePartitionFailureEntry.BuildererrorDetail(Consumer<ErrorDetail.Builder> errorDetail)The details about the batch update partition error.BatchUpdatePartitionFailureEntry.BuildererrorDetail(ErrorDetail errorDetail)The details about the batch update partition error.BatchUpdatePartitionFailureEntry.BuilderpartitionValueList(String... partitionValueList)A list of values defining the partitions.BatchUpdatePartitionFailureEntry.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, sdkFields
-
-
-
-
Method Detail
-
partitionValueList
BatchUpdatePartitionFailureEntry.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
BatchUpdatePartitionFailureEntry.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.
-
errorDetail
BatchUpdatePartitionFailureEntry.Builder errorDetail(ErrorDetail errorDetail)
The details about the batch update partition error.
- Parameters:
errorDetail- The details about the batch update partition error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetail
default BatchUpdatePartitionFailureEntry.Builder errorDetail(Consumer<ErrorDetail.Builder> errorDetail)
The details about the batch update partition error.
This is a convenience method that creates an instance of theErrorDetail.Builderavoiding the need to create one manually viaErrorDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerrorDetail(ErrorDetail).- Parameters:
errorDetail- a consumer that will call methods onErrorDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
errorDetail(ErrorDetail)
-
-