aws_sdk_glue/client/stop_materialized_view_refresh_task_run.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 [`StopMaterializedViewRefreshTaskRun`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`catalog_id(impl Into<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::set_catalog_id):<br>required: **true**<br><p>The ID of the Data Catalog where the table reside. If none is supplied, the account ID is used by default.</p><br>
7 /// - [`database_name(impl Into<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::set_database_name):<br>required: **true**<br><p>The name of the database where the table resides.</p><br>
8 /// - [`table_name(impl Into<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table to generate statistics.</p><br>
9 /// - On success, responds with [`StopMaterializedViewRefreshTaskRunOutput`](crate::operation::stop_materialized_view_refresh_task_run::StopMaterializedViewRefreshTaskRunOutput)
10 /// - On failure, responds with [`SdkError<StopMaterializedViewRefreshTaskRunError>`](crate::operation::stop_materialized_view_refresh_task_run::StopMaterializedViewRefreshTaskRunError)
11 pub fn stop_materialized_view_refresh_task_run(
12 &self,
13 ) -> crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder {
14 crate::operation::stop_materialized_view_refresh_task_run::builders::StopMaterializedViewRefreshTaskRunFluentBuilder::new(self.handle.clone())
15 }
16}