aws_sdk_quicksight/client/update_identity_propagation_config.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 [`UpdateIdentityPropagationConfig`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the identity propagation configuration that you want to update.</p><br>
7 /// - [`service(ServiceType)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::service) / [`set_service(Option<ServiceType>)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::set_service):<br>required: **true**<br><p>The name of the Amazon Web Services service that contains the authorized targets that you want to add or update.</p><br>
8 /// - [`authorized_targets(impl Into<String>)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::authorized_targets) / [`set_authorized_targets(Option<Vec::<String>>)`](crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::set_authorized_targets):<br>required: **false**<br><p>Specifies a list of application ARNs that represent the authorized targets for a service.</p><br>
9 /// - On success, responds with [`UpdateIdentityPropagationConfigOutput`](crate::operation::update_identity_propagation_config::UpdateIdentityPropagationConfigOutput) with field(s):
10 /// - [`request_id(Option<String>)`](crate::operation::update_identity_propagation_config::UpdateIdentityPropagationConfigOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - [`status(i32)`](crate::operation::update_identity_propagation_config::UpdateIdentityPropagationConfigOutput::status): <p>The HTTP status of the request.</p>
12 /// - On failure, responds with [`SdkError<UpdateIdentityPropagationConfigError>`](crate::operation::update_identity_propagation_config::UpdateIdentityPropagationConfigError)
13 pub fn update_identity_propagation_config(
14 &self,
15 ) -> crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder {
16 crate::operation::update_identity_propagation_config::builders::UpdateIdentityPropagationConfigFluentBuilder::new(self.handle.clone())
17 }
18}