Struct aws_sdk_glue::input::batch_delete_table_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for BatchDeleteTableInput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the catalog database in which the tables to delete reside. For Hive compatibility, this name is entirely lowercase.
sourcepub fn tables_to_delete(self, input: impl Into<String>) -> Self
pub fn tables_to_delete(self, input: impl Into<String>) -> Self
Appends an item to tables_to_delete.
To override the contents of this collection use set_tables_to_delete.
A list of the table to delete.
sourcepub fn set_tables_to_delete(self, input: Option<Vec<String>>) -> Self
pub fn set_tables_to_delete(self, input: Option<Vec<String>>) -> Self
A list of the table to delete.
sourcepub fn transaction_id(self, input: impl Into<String>) -> Self
pub fn transaction_id(self, input: impl Into<String>) -> Self
The transaction ID at which to delete the table contents.
sourcepub fn set_transaction_id(self, input: Option<String>) -> Self
pub fn set_transaction_id(self, input: Option<String>) -> Self
The transaction ID at which to delete the table contents.
sourcepub fn build(self) -> Result<BatchDeleteTableInput, BuildError>
pub fn build(self) -> Result<BatchDeleteTableInput, BuildError>
Consumes the builder and constructs a BatchDeleteTableInput.