Interface BackfillError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BackfillError.Builder,BackfillError>,SdkBuilder<BackfillError.Builder,BackfillError>,SdkPojo
- Enclosing class:
- BackfillError
public static interface BackfillError.Builder extends SdkPojo, CopyableBuilder<BackfillError.Builder,BackfillError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BackfillError.Buildercode(String code)The error code for an error that occurred when registering partition indexes for an existing table.BackfillError.Buildercode(BackfillErrorCode code)The error code for an error that occurred when registering partition indexes for an existing table.BackfillError.Builderpartitions(Collection<PartitionValueList> partitions)A list of a limited number of partitions in the response.BackfillError.Builderpartitions(Consumer<PartitionValueList.Builder>... partitions)A list of a limited number of partitions in the response.BackfillError.Builderpartitions(PartitionValueList... partitions)A list of a limited number of partitions in the response.-
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
-
code
BackfillError.Builder code(String code)
The error code for an error that occurred when registering partition indexes for an existing table.
- Parameters:
code- The error code for an error that occurred when registering partition indexes for an existing table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BackfillErrorCode,BackfillErrorCode
-
code
BackfillError.Builder code(BackfillErrorCode code)
The error code for an error that occurred when registering partition indexes for an existing table.
- Parameters:
code- The error code for an error that occurred when registering partition indexes for an existing table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BackfillErrorCode,BackfillErrorCode
-
partitions
BackfillError.Builder partitions(Collection<PartitionValueList> partitions)
A list of a limited number of partitions in the response.
- Parameters:
partitions- A list of a limited number of partitions in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitions
BackfillError.Builder partitions(PartitionValueList... partitions)
A list of a limited number of partitions in the response.
- Parameters:
partitions- A list of a limited number of partitions in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitions
BackfillError.Builder partitions(Consumer<PartitionValueList.Builder>... partitions)
A list of a limited number of partitions in the response.
This is a convenience method that creates an instance of thePartitionValueList.Builderavoiding the need to create one manually viaPartitionValueList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#partitions(List.) - Parameters:
partitions- a consumer that will call methods onPartitionValueList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#partitions(java.util.Collection)
-
-