Struct aws_sdk_glue::operation::batch_update_partition::builders::BatchUpdatePartitionFluentBuilder
source · pub struct BatchUpdatePartitionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to BatchUpdatePartition
.
Updates one or more partitions in a batch operation.
Implementations§
source§impl BatchUpdatePartitionFluentBuilder
impl BatchUpdatePartitionFluentBuilder
sourcepub fn as_input(&self) -> &BatchUpdatePartitionInputBuilder
pub fn as_input(&self) -> &BatchUpdatePartitionInputBuilder
Access the BatchUpdatePartition as a reference.
sourcepub async fn send(
self
) -> Result<BatchUpdatePartitionOutput, SdkError<BatchUpdatePartitionError, HttpResponse>>
pub async fn send( self ) -> Result<BatchUpdatePartitionOutput, SdkError<BatchUpdatePartitionError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<BatchUpdatePartitionOutput, BatchUpdatePartitionError, Self>
pub fn customize( self ) -> CustomizableOperation<BatchUpdatePartitionOutput, BatchUpdatePartitionError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
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 get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
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 get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
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 get_entries(&self) -> &Option<Vec<BatchUpdatePartitionRequestEntry>>
pub fn get_entries(&self) -> &Option<Vec<BatchUpdatePartitionRequestEntry>>
A list of up to 100 BatchUpdatePartitionRequestEntry
objects to update.
Trait Implementations§
source§impl Clone for BatchUpdatePartitionFluentBuilder
impl Clone for BatchUpdatePartitionFluentBuilder
source§fn clone(&self) -> BatchUpdatePartitionFluentBuilder
fn clone(&self) -> BatchUpdatePartitionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more