Interface BatchDeleteTableResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchDeleteTableResponse.Builder,BatchDeleteTableResponse>,GlueResponse.Builder,SdkBuilder<BatchDeleteTableResponse.Builder,BatchDeleteTableResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchDeleteTableResponse
public static interface BatchDeleteTableResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchDeleteTableResponse.Builder,BatchDeleteTableResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteTableResponse.Buildererrors(Collection<TableError> errors)A list of errors encountered in attempting to delete the specified tables.BatchDeleteTableResponse.Buildererrors(Consumer<TableError.Builder>... errors)A list of errors encountered in attempting to delete the specified tables.BatchDeleteTableResponse.Buildererrors(TableError... errors)A list of errors encountered in attempting to delete the specified tables.-
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
BatchDeleteTableResponse.Builder errors(Collection<TableError> errors)
A list of errors encountered in attempting to delete the specified tables.
- Parameters:
errors- A list of errors encountered in attempting to delete the specified tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteTableResponse.Builder errors(TableError... errors)
A list of errors encountered in attempting to delete the specified tables.
- Parameters:
errors- A list of errors encountered in attempting to delete the specified tables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteTableResponse.Builder errors(Consumer<TableError.Builder>... errors)
A list of errors encountered in attempting to delete the specified tables.
This is a convenience method that creates an instance of theTableError.Builderavoiding the need to create one manually viaTableError.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 onTableError.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-