aws_sdk_dynamodb/client/
describe_global_table_settings.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 [`DescribeGlobalTableSettings`](crate::operation::describe_global_table_settings::builders::DescribeGlobalTableSettingsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`global_table_name(impl Into<String>)`](crate::operation::describe_global_table_settings::builders::DescribeGlobalTableSettingsFluentBuilder::global_table_name) / [`set_global_table_name(Option<String>)`](crate::operation::describe_global_table_settings::builders::DescribeGlobalTableSettingsFluentBuilder::set_global_table_name):<br>required: **true**<br><p>The name of the global table to describe.</p><br>
7    /// - On success, responds with [`DescribeGlobalTableSettingsOutput`](crate::operation::describe_global_table_settings::DescribeGlobalTableSettingsOutput) with field(s):
8    ///   - [`global_table_name(Option<String>)`](crate::operation::describe_global_table_settings::DescribeGlobalTableSettingsOutput::global_table_name): <p>The name of the global table.</p>
9    ///   - [`replica_settings(Option<Vec::<ReplicaSettingsDescription>>)`](crate::operation::describe_global_table_settings::DescribeGlobalTableSettingsOutput::replica_settings): <p>The Region-specific settings for the global table.</p>
10    /// - On failure, responds with [`SdkError<DescribeGlobalTableSettingsError>`](crate::operation::describe_global_table_settings::DescribeGlobalTableSettingsError)
11    pub fn describe_global_table_settings(
12        &self,
13    ) -> crate::operation::describe_global_table_settings::builders::DescribeGlobalTableSettingsFluentBuilder {
14        crate::operation::describe_global_table_settings::builders::DescribeGlobalTableSettingsFluentBuilder::new(self.handle.clone())
15    }
16}