aws_sdk_quicksight/client/
describe_default_q_business_application.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeDefaultQBusinessApplication`](crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`DescribeDefaultQBusinessApplicationOutput`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput) with field(s):
9    ///   - [`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>
10    ///   - [`status(i32)`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationOutput::status): <p>The HTTP status of the request.</p>
11    ///   - [`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>
12    /// - On failure, responds with [`SdkError<DescribeDefaultQBusinessApplicationError>`](crate::operation::describe_default_q_business_application::DescribeDefaultQBusinessApplicationError)
13    pub fn describe_default_q_business_application(
14        &self,
15    ) -> crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder {
16        crate::operation::describe_default_q_business_application::builders::DescribeDefaultQBusinessApplicationFluentBuilder::new(
17            self.handle.clone(),
18        )
19    }
20}