Interface BatchDeleteTableRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<BatchDeleteTableRequest.Builder,BatchDeleteTableRequest>,GlueRequest.Builder,SdkBuilder<BatchDeleteTableRequest.Builder,BatchDeleteTableRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchDeleteTableRequest
public static interface BatchDeleteTableRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<BatchDeleteTableRequest.Builder,BatchDeleteTableRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteTableRequest.BuildercatalogId(String catalogId)The ID of the Data Catalog where the table resides.BatchDeleteTableRequest.BuilderdatabaseName(String databaseName)The name of the catalog database in which the tables to delete reside.BatchDeleteTableRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchDeleteTableRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)BatchDeleteTableRequest.BuildertablesToDelete(String... tablesToDelete)A list of the table to delete.BatchDeleteTableRequest.BuildertablesToDelete(Collection<String> tablesToDelete)A list of the table to delete.BatchDeleteTableRequest.BuildertransactionId(String transactionId)The transaction ID at which to delete the table contents.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
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
-
catalogId
BatchDeleteTableRequest.Builder catalogId(String catalogId)
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId- The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
BatchDeleteTableRequest.Builder databaseName(String databaseName)
The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.
- Parameters:
databaseName- The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tablesToDelete
BatchDeleteTableRequest.Builder tablesToDelete(Collection<String> tablesToDelete)
A list of the table to delete.
- Parameters:
tablesToDelete- A list of the table to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tablesToDelete
BatchDeleteTableRequest.Builder tablesToDelete(String... tablesToDelete)
A list of the table to delete.
- Parameters:
tablesToDelete- A list of the table to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transactionId
BatchDeleteTableRequest.Builder transactionId(String transactionId)
The transaction ID at which to delete the table contents.
- Parameters:
transactionId- The transaction ID at which to delete the table contents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
BatchDeleteTableRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchDeleteTableRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-