aws_sdk_quicksight/client/
delete_default_q_business_application.rs

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