aws_sdk_quicksight/client/list_identity_propagation_configs.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 [`ListIdentityPropagationConfigs`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contain the identity propagation configurations of.</p><br>
7 /// - [`max_results(i32)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or null if there are no more results.</p><br>
9 /// - On success, responds with [`ListIdentityPropagationConfigsOutput`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsOutput) with field(s):
10 /// - [`services(Option<Vec::<AuthorizedTargetsByService>>)`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsOutput::services): <p>A list of services and their authorized targets that the Amazon QuickSight IAM Identity Center application can access.</p>
11 /// - [`next_token(Option<String>)`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
12 /// - [`status(i32)`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsOutput::status): <p>The HTTP status of the request.</p>
13 /// - [`request_id(Option<String>)`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
14 /// - On failure, responds with [`SdkError<ListIdentityPropagationConfigsError>`](crate::operation::list_identity_propagation_configs::ListIdentityPropagationConfigsError)
15 pub fn list_identity_propagation_configs(
16 &self,
17 ) -> crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder {
18 crate::operation::list_identity_propagation_configs::builders::ListIdentityPropagationConfigsFluentBuilder::new(self.handle.clone())
19 }
20}