aws_sdk_workspacesweb/client/list_identity_providers.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 [`ListIdentityProviders`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`next_token(impl Into<String>)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token used to retrieve the next page of results for this operation.</p><br>
8 /// - [`max_results(i32)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be included in the next page.</p><br>
9 /// - [`portal_arn(impl Into<String>)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::portal_arn) / [`set_portal_arn(Option<String>)`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::set_portal_arn):<br>required: **true**<br><p>The ARN of the web portal.</p><br>
10 /// - On success, responds with [`ListIdentityProvidersOutput`](crate::operation::list_identity_providers::ListIdentityProvidersOutput) with field(s):
11 /// - [`next_token(Option<String>)`](crate::operation::list_identity_providers::ListIdentityProvidersOutput::next_token): <p>The pagination token used to retrieve the next page of results for this operation.</p>
12 /// - [`identity_providers(Option<Vec::<IdentityProviderSummary>>)`](crate::operation::list_identity_providers::ListIdentityProvidersOutput::identity_providers): <p>The identity providers.</p>
13 /// - On failure, responds with [`SdkError<ListIdentityProvidersError>`](crate::operation::list_identity_providers::ListIdentityProvidersError)
14 pub fn list_identity_providers(&self) -> crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder {
15 crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::new(self.handle.clone())
16 }
17}