aws-sdk-glue 1.149.0

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