aws_sdk_quicksight/client/
delete_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 [`DeleteDefaultQBusinessApplication`](crate::operation::delete_default_q_business_application::builders::DeleteDefaultQBusinessApplicationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`DeleteDefaultQBusinessApplicationOutput`](crate::operation::delete_default_q_business_application::DeleteDefaultQBusinessApplicationOutput) with field(s):
9    ///   - [`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>
10    ///   - [`status(i32)`](crate::operation::delete_default_q_business_application::DeleteDefaultQBusinessApplicationOutput::status): <p>The HTTP status of the request.</p>
11    /// - On failure, responds with [`SdkError<DeleteDefaultQBusinessApplicationError>`](crate::operation::delete_default_q_business_application::DeleteDefaultQBusinessApplicationError)
12    pub fn delete_default_q_business_application(
13        &self,
14    ) -> crate::operation::delete_default_q_business_application::builders::DeleteDefaultQBusinessApplicationFluentBuilder {
15        crate::operation::delete_default_q_business_application::builders::DeleteDefaultQBusinessApplicationFluentBuilder::new(self.handle.clone())
16    }
17}