aws_sdk_quicksight/client/update_self_upgrade_configuration.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 [`UpdateSelfUpgradeConfiguration`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the Quick Suite self-upgrade configuration that you want to update.</p><br>
7 /// - [`namespace(impl Into<String>)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::set_namespace):<br>required: **true**<br><p>The Quick Suite namespace that you want to update the Quick Suite self-upgrade configuration for.</p><br>
8 /// - [`self_upgrade_status(SelfUpgradeStatus)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::self_upgrade_status) / [`set_self_upgrade_status(Option<SelfUpgradeStatus>)`](crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::set_self_upgrade_status):<br>required: **true**<br><p>The self-upgrade status that you want to set for the Quick Suite account.</p><br>
9 /// - On success, responds with [`UpdateSelfUpgradeConfigurationOutput`](crate::operation::update_self_upgrade_configuration::UpdateSelfUpgradeConfigurationOutput) with field(s):
10 /// - [`request_id(Option<String>)`](crate::operation::update_self_upgrade_configuration::UpdateSelfUpgradeConfigurationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - [`status(i32)`](crate::operation::update_self_upgrade_configuration::UpdateSelfUpgradeConfigurationOutput::status): <p>The HTTP status of the request.</p>
12 /// - On failure, responds with [`SdkError<UpdateSelfUpgradeConfigurationError>`](crate::operation::update_self_upgrade_configuration::UpdateSelfUpgradeConfigurationError)
13 pub fn update_self_upgrade_configuration(
14 &self,
15 ) -> crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder {
16 crate::operation::update_self_upgrade_configuration::builders::UpdateSelfUpgradeConfigurationFluentBuilder::new(self.handle.clone())
17 }
18}