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 [`DescribeTable`](crate::operation::describe_table::builders::DescribeTableFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`table_name(impl ::std::convert::Into<String>)`](crate::operation::describe_table::builders::DescribeTableFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::describe_table::builders::DescribeTableFluentBuilder::set_table_name): <p>The name of the table to describe.</p>
    /// - On success, responds with [`DescribeTableOutput`](crate::operation::describe_table::DescribeTableOutput) with field(s):
    ///   - [`table(Option<TableDescription>)`](crate::operation::describe_table::DescribeTableOutput::table): <p>The properties of the table.</p>
    /// - On failure, responds with [`SdkError<DescribeTableError>`](crate::operation::describe_table::DescribeTableError)
    pub fn describe_table(
        &self,
    ) -> crate::operation::describe_table::builders::DescribeTableFluentBuilder {
        crate::operation::describe_table::builders::DescribeTableFluentBuilder::new(
            self.handle.clone(),
        )
    }
}