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
Modifier and TypeMethodDescriptionerrorDetail
(Consumer<ErrorDetail.Builder> errorDetail) The details about the batch update partition error.errorDetail
(ErrorDetail errorDetail) The details about the batch update partition error.partitionValueList
(String... partitionValueList) A list of values defining the partitions.partitionValueList
(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 Details
-
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
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
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.Builder
avoiding the need to create one manually viaErrorDetail.builder()
.When the
Consumer
completes,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:
-