aws_sdk_workspacesweb/client/list_identity_providers.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListIdentityProviders`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`ListIdentityProvidersOutput`](crate::operation::list_identity_providers::ListIdentityProvidersOutput) with field(s):
/// - [`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>
/// - [`identity_providers(Option<Vec::<IdentityProviderSummary>>)`](crate::operation::list_identity_providers::ListIdentityProvidersOutput::identity_providers): <p>The identity providers.</p>
/// - On failure, responds with [`SdkError<ListIdentityProvidersError>`](crate::operation::list_identity_providers::ListIdentityProvidersError)
pub fn list_identity_providers(&self) -> crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder {
crate::operation::list_identity_providers::builders::ListIdentityProvidersFluentBuilder::new(self.handle.clone())
}
}