aws_sdk_quicksight/client/
describe_default_q_business_application.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDefaultQBusinessApplication`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon QuickSight account that is linked to the Amazon Q Business application that you want described.</p><br>
    ///   - [`namespace(impl Into<String>)`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::set_namespace):<br>required: **false**<br><p>The Amazon QuickSight namespace that contains the linked Amazon Q Business application. If this field is left blank, the default namespace is used. Currently, the default namespace is the only valid value for this parameter.</p><br>
    /// - On success, responds with [`DescribeDefaultQBusinessApplicationOutput`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput) with field(s):
    ///   - [`request_id(Option<String>)`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`application_id(Option<String>)`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput::application_id): <p>The ID of the Amazon Q Business application that is linked to the Amazon QuickSight account.</p>
    /// - On failure, responds with [`SdkError<DescribeDefaultQBusinessApplicationError>`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationError)
    pub fn describe_default_q_business_application(
        &self,
    ) -> crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder {
        crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}