Struct aws_sdk_glue::client::fluent_builders::UpdatePartition
source · pub struct UpdatePartition { /* private fields */ }Expand description
Fluent builder constructing a request to UpdatePartition.
Updates a partition.
Implementations§
source§impl UpdatePartition
impl UpdatePartition
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePartition, AwsResponseRetryClassifier>, SdkError<UpdatePartitionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePartition, AwsResponseRetryClassifier>, SdkError<UpdatePartitionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdatePartitionOutput, SdkError<UpdatePartitionError>>
pub async fn send(
self
) -> Result<UpdatePartitionOutput, SdkError<UpdatePartitionError>>
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 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 updated 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 updated 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 in which the partition to be updated is located.
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 in which the partition to be updated is located.
sourcepub fn partition_value_list(self, input: impl Into<String>) -> Self
pub fn partition_value_list(self, input: impl Into<String>) -> Self
Appends an item to PartitionValueList.
To override the contents of this collection use set_partition_value_list.
List of partition key values that define the partition to update.
sourcepub fn set_partition_value_list(self, input: Option<Vec<String>>) -> Self
pub fn set_partition_value_list(self, input: Option<Vec<String>>) -> Self
List of partition key values that define the partition to update.
sourcepub fn partition_input(self, input: PartitionInput) -> Self
pub fn partition_input(self, input: PartitionInput) -> Self
The new partition object to update the partition to.
The Values property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.
sourcepub fn set_partition_input(self, input: Option<PartitionInput>) -> Self
pub fn set_partition_input(self, input: Option<PartitionInput>) -> Self
The new partition object to update the partition to.
The Values property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.
Trait Implementations§
source§impl Clone for UpdatePartition
impl Clone for UpdatePartition
source§fn clone(&self) -> UpdatePartition
fn clone(&self) -> UpdatePartition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more