aws_sdk_quicksight/client/update_application_with_token_exchange_grant.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 [`UpdateApplicationWithTokenExchangeGrant`](crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account to be updated with a token exchange grant.</p><br>
7 /// - [`namespace(impl Into<String>)`](crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace of the Amazon QuickSight application.</p><br>
8 /// - On success, responds with [`UpdateApplicationWithTokenExchangeGrantOutput`](crate::operation::update_application_with_token_exchange_grant::UpdateApplicationWithTokenExchangeGrantOutput) with field(s):
9 /// - [`status(i32)`](crate::operation::update_application_with_token_exchange_grant::UpdateApplicationWithTokenExchangeGrantOutput::status): <p>The HTTP status of the request.</p>
10 /// - [`request_id(Option<String>)`](crate::operation::update_application_with_token_exchange_grant::UpdateApplicationWithTokenExchangeGrantOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - On failure, responds with [`SdkError<UpdateApplicationWithTokenExchangeGrantError>`](crate::operation::update_application_with_token_exchange_grant::UpdateApplicationWithTokenExchangeGrantError)
12 pub fn update_application_with_token_exchange_grant(
13 &self,
14 ) -> crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder {
15 crate::operation::update_application_with_token_exchange_grant::builders::UpdateApplicationWithTokenExchangeGrantFluentBuilder::new(
16 self.handle.clone(),
17 )
18 }
19}