Struct aws_sdk_glue::input::UpdatePartitionInput
source · #[non_exhaustive]pub struct UpdatePartitionInput { /* private fields */ }Implementations§
source§impl UpdatePartitionInput
impl UpdatePartitionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdatePartition, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdatePartition, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdatePartition>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdatePartitionInput.
source§impl UpdatePartitionInput
impl UpdatePartitionInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
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) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the catalog database in which the table in question resides.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table in which the partition to be updated is located.
sourcepub fn partition_value_list(&self) -> Option<&[String]>
pub fn partition_value_list(&self) -> Option<&[String]>
List of partition key values that define the partition to update.
sourcepub fn partition_input(&self) -> Option<&PartitionInput>
pub fn partition_input(&self) -> Option<&PartitionInput>
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 UpdatePartitionInput
impl Clone for UpdatePartitionInput
source§fn clone(&self) -> UpdatePartitionInput
fn clone(&self) -> UpdatePartitionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdatePartitionInput
impl Debug for UpdatePartitionInput
source§impl PartialEq<UpdatePartitionInput> for UpdatePartitionInput
impl PartialEq<UpdatePartitionInput> for UpdatePartitionInput
source§fn eq(&self, other: &UpdatePartitionInput) -> bool
fn eq(&self, other: &UpdatePartitionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.