// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteColumnStatisticsForTable`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`catalog_id(impl Into<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::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_table::builders::DeleteColumnStatisticsForTableFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::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_table::builders::DeleteColumnStatisticsForTableFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the partitions' table.</p><br>
/// - [`column_name(impl Into<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::column_name) / [`set_column_name(Option<String>)`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::set_column_name):<br>required: **true**<br><p>The name of the column.</p><br>
/// - On success, responds with [`DeleteColumnStatisticsForTableOutput`](crate::operation::delete_column_statistics_for_table::DeleteColumnStatisticsForTableOutput)
/// - On failure, responds with [`SdkError<DeleteColumnStatisticsForTableError>`](crate::operation::delete_column_statistics_for_table::DeleteColumnStatisticsForTableError)
pub fn delete_column_statistics_for_table(
&self,
) -> crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder {
crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::new(self.handle.clone())
}
}