aws_sdk_glue/client/delete_column_statistics_for_table.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteColumnStatisticsForTable`](crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - On success, responds with [`DeleteColumnStatisticsForTableOutput`](crate::operation::delete_column_statistics_for_table::DeleteColumnStatisticsForTableOutput)
11 /// - On failure, responds with [`SdkError<DeleteColumnStatisticsForTableError>`](crate::operation::delete_column_statistics_for_table::DeleteColumnStatisticsForTableError)
12 pub fn delete_column_statistics_for_table(
13 &self,
14 ) -> crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder {
15 crate::operation::delete_column_statistics_for_table::builders::DeleteColumnStatisticsForTableFluentBuilder::new(self.handle.clone())
16 }
17}