aws_sdk_glue/client/stop_column_statistics_task_run_schedule.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 [`StopColumnStatisticsTaskRunSchedule`](crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`StopColumnStatisticsTaskRunScheduleOutput`](crate::operation::stop_column_statistics_task_run_schedule::StopColumnStatisticsTaskRunScheduleOutput)
9 /// - On failure, responds with [`SdkError<StopColumnStatisticsTaskRunScheduleError>`](crate::operation::stop_column_statistics_task_run_schedule::StopColumnStatisticsTaskRunScheduleError)
10 pub fn stop_column_statistics_task_run_schedule(
11 &self,
12 ) -> crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder {
13 crate::operation::stop_column_statistics_task_run_schedule::builders::StopColumnStatisticsTaskRunScheduleFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}