Struct aws_sdk_glue::input::batch_update_partition_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for BatchUpdatePartitionInput.
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 catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the metadata database in which the partition is to be updated.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the metadata database in which the partition is to be updated.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the metadata table in which the partition is to be updated.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the metadata table in which the partition is to be updated.
sourcepub fn entries(self, input: BatchUpdatePartitionRequestEntry) -> Self
pub fn entries(self, input: BatchUpdatePartitionRequestEntry) -> Self
Appends an item to entries.
To override the contents of this collection use set_entries.
A list of up to 100 BatchUpdatePartitionRequestEntry objects to update.
sourcepub fn set_entries(
self,
input: Option<Vec<BatchUpdatePartitionRequestEntry>>
) -> Self
pub fn set_entries(
self,
input: Option<Vec<BatchUpdatePartitionRequestEntry>>
) -> Self
A list of up to 100 BatchUpdatePartitionRequestEntry objects to update.
sourcepub fn build(self) -> Result<BatchUpdatePartitionInput, BuildError>
pub fn build(self) -> Result<BatchUpdatePartitionInput, BuildError>
Consumes the builder and constructs a BatchUpdatePartitionInput.