1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 Into<String>)`](crate::operation::describe_table::builders::DescribeTableFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::describe_table::builders::DescribeTableFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table to describe. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p><br>
    /// - 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())
    }
}