// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteColumnStatisticsForPartition`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`catalog_id(impl Into<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.</p><br>
/// - [`database_name(impl Into<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::set_database_name):<br>required: **true**<br><p>The name of the catalog database where the partitions reside.</p><br>
/// - [`table_name(impl Into<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the partitions' table.</p><br>
/// - [`partition_values(impl Into<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::partition_values) / [`set_partition_values(Option<Vec::<String>>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::set_partition_values):<br>required: **true**<br><p>A list of partition values identifying the partition.</p><br>
/// - [`column_name(impl Into<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::column_name) / [`set_column_name(Option<String>)`](crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::set_column_name):<br>required: **true**<br><p>Name of the column.</p><br>
/// - On success, responds with [`DeleteColumnStatisticsForPartitionOutput`](crate::operation::delete_column_statistics_for_partition::DeleteColumnStatisticsForPartitionOutput)
/// - On failure, responds with [`SdkError<DeleteColumnStatisticsForPartitionError>`](crate::operation::delete_column_statistics_for_partition::DeleteColumnStatisticsForPartitionError)
pub fn delete_column_statistics_for_partition(
&self,
) -> crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder {
crate::operation::delete_column_statistics_for_partition::builders::DeleteColumnStatisticsForPartitionFluentBuilder::new(self.handle.clone())
}
}