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 [`DescribeGlobalTable`](crate::operation::describe_global_table::builders::DescribeGlobalTableFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`global_table_name(impl ::std::convert::Into<String>)`](crate::operation::describe_global_table::builders::DescribeGlobalTableFluentBuilder::global_table_name) / [`set_global_table_name(Option<String>)`](crate::operation::describe_global_table::builders::DescribeGlobalTableFluentBuilder::set_global_table_name): <p>The name of the global table.</p>
    /// - On success, responds with [`DescribeGlobalTableOutput`](crate::operation::describe_global_table::DescribeGlobalTableOutput) with field(s):
    ///   - [`global_table_description(Option<GlobalTableDescription>)`](crate::operation::describe_global_table::DescribeGlobalTableOutput::global_table_description): <p>Contains the details of the global table.</p>
    /// - On failure, responds with [`SdkError<DescribeGlobalTableError>`](crate::operation::describe_global_table::DescribeGlobalTableError)
    pub fn describe_global_table(
        &self,
    ) -> crate::operation::describe_global_table::builders::DescribeGlobalTableFluentBuilder {
        crate::operation::describe_global_table::builders::DescribeGlobalTableFluentBuilder::new(
            self.handle.clone(),
        )
    }
}