1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeNamespace`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`namespace_name(impl Into<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::namespace_name) / [`set_namespace_name(Option<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::set_namespace_name):<br>required: **false**<br><p>The name of the user's namespace. Set this to <code>aws</code> to get the public namespace.</p><br>
    /// - On success, responds with [`DescribeNamespaceOutput`](crate::operation::describe_namespace::DescribeNamespaceOutput) with field(s):
    ///   - [`namespace_arn(Option<String>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::namespace_arn): <p>The ARN of the namespace.</p>
    ///   - [`namespace_name(Option<String>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::namespace_name): <p>The name of the namespace.</p>
    ///   - [`tracking_namespace_name(Option<String>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::tracking_namespace_name): <p>The name of the public namespace that the latest namespace version is tracking.</p>
    ///   - [`tracking_namespace_version(Option<i64>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::tracking_namespace_version): <p>The version of the public namespace that the latest version is tracking.</p>
    ///   - [`namespace_version(Option<i64>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::namespace_version): <p>The version of the user's namespace to describe.</p>
    /// - On failure, responds with [`SdkError<DescribeNamespaceError>`](crate::operation::describe_namespace::DescribeNamespaceError)
    #[deprecated(note = "since: 2022-08-30")]
    pub fn describe_namespace(&self) -> crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder {
        crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::new(self.handle.clone())
    }
}