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 [`GetNamespace`](crate::operation::get_namespace::builders::GetNamespaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`namespace_name(impl Into<String>)`](crate::operation::get_namespace::builders::GetNamespaceFluentBuilder::namespace_name) / [`set_namespace_name(Option<String>)`](crate::operation::get_namespace::builders::GetNamespaceFluentBuilder::set_namespace_name): <p>The name of the namespace to retrieve information for.</p>
    /// - On success, responds with [`GetNamespaceOutput`](crate::operation::get_namespace::GetNamespaceOutput) with field(s):
    ///   - [`namespace(Option<Namespace>)`](crate::operation::get_namespace::GetNamespaceOutput::namespace): <p>The returned namespace object.</p>
    /// - On failure, responds with [`SdkError<GetNamespaceError>`](crate::operation::get_namespace::GetNamespaceError)
    pub fn get_namespace(&self) -> crate::operation::get_namespace::builders::GetNamespaceFluentBuilder {
        crate::operation::get_namespace::builders::GetNamespaceFluentBuilder::new(self.handle.clone())
    }
}