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 [`DescribeContainer`](crate::operation::describe_container::builders::DescribeContainerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`container_name(impl Into<String>)`](crate::operation::describe_container::builders::DescribeContainerFluentBuilder::container_name) / [`set_container_name(Option<String>)`](crate::operation::describe_container::builders::DescribeContainerFluentBuilder::set_container_name): <p>The name of the container to query.</p>
    /// - On success, responds with [`DescribeContainerOutput`](crate::operation::describe_container::DescribeContainerOutput) with field(s):
    ///   - [`container(Option<Container>)`](crate::operation::describe_container::DescribeContainerOutput::container): <p>The name of the queried container.</p>
    /// - On failure, responds with [`SdkError<DescribeContainerError>`](crate::operation::describe_container::DescribeContainerError)
    pub fn describe_container(&self) -> crate::operation::describe_container::builders::DescribeContainerFluentBuilder {
        crate::operation::describe_container::builders::DescribeContainerFluentBuilder::new(self.handle.clone())
    }
}