aws_sdk_glue/client/
stop_column_statistics_task_run_schedule.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopColumnStatisticsTaskRunSchedule`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`database_name(impl Into<String>)`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::set_database_name):<br>required: **true**<br><p>The name of the database where the table resides.</p><br>
    ///   - [`table_name(impl Into<String>)`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table for which to stop a column statistic task run schedule.</p><br>
    /// - On success, responds with [`StopColumnStatisticsTaskRunScheduleOutput`](crate::operation::stop_column_statistics_task_run_schedule::StopColumnStatisticsTaskRunScheduleOutput)
    /// - On failure, responds with [`SdkError<StopColumnStatisticsTaskRunScheduleError>`](crate::operation::stop_column_statistics_task_run_schedule::StopColumnStatisticsTaskRunScheduleError)
    pub fn stop_column_statistics_task_run_schedule(
        &self,
    ) -> crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder {
        crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::new(
            self.handle.clone(),
        )
    }
}