1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID for the Amazon Web Services account that contains the Amazon QuickSight namespace that you want to describe.</p><br>
    ///   - [`namespace(impl Into<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace that you want to describe.</p><br>
    /// - On success, responds with [`DescribeNamespaceOutput`](crate::operation::describe_namespace::DescribeNamespaceOutput) with field(s):
    ///   - [`namespace(Option<NamespaceInfoV2>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::namespace): <p>The information about the namespace that you're describing. The response includes the namespace ARN, name, Amazon Web Services Region, creation status, and identity store. <code>DescribeNamespace</code> also works for namespaces that are in the process of being created. For incomplete namespaces, this API operation lists the namespace error types and messages associated with the creation process.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::describe_namespace::DescribeNamespaceOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::describe_namespace::DescribeNamespaceOutput::status): <p>The HTTP status of the request.</p>
    /// - On failure, responds with [`SdkError<DescribeNamespaceError>`](crate::operation::describe_namespace::DescribeNamespaceError)
    pub fn describe_namespace(&self) -> crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder {
        crate::operation::describe_namespace::builders::DescribeNamespaceFluentBuilder::new(self.handle.clone())
    }
}