Struct aws_sdk_glue::input::batch_delete_partition_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for BatchDeletePartitionInput.
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 partition to be deleted 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 partition to be deleted 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 table in question resides.
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 table in question resides.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table that contains the partitions to be deleted.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table that contains the partitions to be deleted.
sourcepub fn partitions_to_delete(self, input: PartitionValueList) -> Self
pub fn partitions_to_delete(self, input: PartitionValueList) -> Self
Appends an item to partitions_to_delete.
To override the contents of this collection use set_partitions_to_delete.
A list of PartitionInput structures that define the partitions to be deleted.
sourcepub fn set_partitions_to_delete(
self,
input: Option<Vec<PartitionValueList>>
) -> Self
pub fn set_partitions_to_delete(
self,
input: Option<Vec<PartitionValueList>>
) -> Self
A list of PartitionInput structures that define the partitions to be deleted.
sourcepub fn build(self) -> Result<BatchDeletePartitionInput, BuildError>
pub fn build(self) -> Result<BatchDeletePartitionInput, BuildError>
Consumes the builder and constructs a BatchDeletePartitionInput.