Interface BatchUpdatePartitionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchUpdatePartitionResponse.Builder,BatchUpdatePartitionResponse>,GlueResponse.Builder,SdkBuilder<BatchUpdatePartitionResponse.Builder,BatchUpdatePartitionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchUpdatePartitionResponse
public static interface BatchUpdatePartitionResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchUpdatePartitionResponse.Builder,BatchUpdatePartitionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchUpdatePartitionResponse.Buildererrors(Collection<BatchUpdatePartitionFailureEntry> errors)The errors encountered when trying to update the requested partitions.BatchUpdatePartitionResponse.Buildererrors(Consumer<BatchUpdatePartitionFailureEntry.Builder>... errors)The errors encountered when trying to update the requested partitions.BatchUpdatePartitionResponse.Buildererrors(BatchUpdatePartitionFailureEntry... errors)The errors encountered when trying to update the requested partitions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
errors
BatchUpdatePartitionResponse.Builder errors(Collection<BatchUpdatePartitionFailureEntry> errors)
The errors encountered when trying to update the requested partitions. A list of
BatchUpdatePartitionFailureEntryobjects.- Parameters:
errors- The errors encountered when trying to update the requested partitions. A list ofBatchUpdatePartitionFailureEntryobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchUpdatePartitionResponse.Builder errors(BatchUpdatePartitionFailureEntry... errors)
The errors encountered when trying to update the requested partitions. A list of
BatchUpdatePartitionFailureEntryobjects.- Parameters:
errors- The errors encountered when trying to update the requested partitions. A list ofBatchUpdatePartitionFailureEntryobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchUpdatePartitionResponse.Builder errors(Consumer<BatchUpdatePartitionFailureEntry.Builder>... errors)
The errors encountered when trying to update the requested partitions. A list of
This is a convenience method that creates an instance of theBatchUpdatePartitionFailureEntryobjects.BatchUpdatePartitionFailureEntry.Builderavoiding the need to create one manually viaBatchUpdatePartitionFailureEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#errors(List.) - Parameters:
errors- a consumer that will call methods onBatchUpdatePartitionFailureEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-