1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateColumnStatisticsForTable`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`catalog_id(impl Into<String>)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::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::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::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::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the partitions' table.</p><br>
    ///   - [`column_statistics_list(ColumnStatistics)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::column_statistics_list) / [`set_column_statistics_list(Option<Vec::<ColumnStatistics>>)`](crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::set_column_statistics_list):<br>required: **true**<br><p>A list of the column statistics.</p><br>
    /// - On success, responds with [`UpdateColumnStatisticsForTableOutput`](crate::operation::update_column_statistics_for_table::UpdateColumnStatisticsForTableOutput) with field(s):
    ///   - [`errors(Option<Vec::<ColumnStatisticsError>>)`](crate::operation::update_column_statistics_for_table::UpdateColumnStatisticsForTableOutput::errors): <p>List of ColumnStatisticsErrors.</p>
    /// - On failure, responds with [`SdkError<UpdateColumnStatisticsForTableError>`](crate::operation::update_column_statistics_for_table::UpdateColumnStatisticsForTableError)
    pub fn update_column_statistics_for_table(
        &self,
    ) -> crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder {
        crate::operation::update_column_statistics_for_table::builders::UpdateColumnStatisticsForTableFluentBuilder::new(self.handle.clone())
    }
}