aws_sdk_quicksight/client/update_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 [`UpdateDefaultQBusinessApplication`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the QuickSight account that is connected to the Amazon Q Business application that you want to update.</p><br>
7 /// - [`namespace(impl Into<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::set_namespace):<br>required: **false**<br><p>The 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 /// - [`application_id(impl Into<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::set_application_id):<br>required: **true**<br><p>The ID of the Amazon Q Business application that you want to update.</p><br>
9 /// - On success, responds with [`UpdateDefaultQBusinessApplicationOutput`](crate::operation::update_default_q_business_application::UpdateDefaultQBusinessApplicationOutput) with field(s):
10 /// - [`request_id(Option<String>)`](crate::operation::update_default_q_business_application::UpdateDefaultQBusinessApplicationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - [`status(i32)`](crate::operation::update_default_q_business_application::UpdateDefaultQBusinessApplicationOutput::status): <p>The HTTP status of the request.</p>
12 /// - On failure, responds with [`SdkError<UpdateDefaultQBusinessApplicationError>`](crate::operation::update_default_q_business_application::UpdateDefaultQBusinessApplicationError)
13 pub fn update_default_q_business_application(
14 &self,
15 ) -> crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder {
16 crate::operation::update_default_q_business_application::builders::UpdateDefaultQBusinessApplicationFluentBuilder::new(self.handle.clone())
17 }
18}