1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListIdentityProviderConfigs`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results, returned in paginated output. You receive <code>maxResults</code> in a single page, along with a <code>nextToken</code> response element. You can see the remaining results of the initial request by sending another request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a <code>nextToken</code> value, if applicable, are returned.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is null when there are no more results to return.</p><note>  <p>This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.</p> </note><br>
    /// - On success, responds with [`ListIdentityProviderConfigsOutput`](crate::operation::list_identity_provider_configs::ListIdentityProviderConfigsOutput) with field(s):
    ///   - [`identity_provider_configs(Option<Vec::<IdentityProviderConfig>>)`](crate::operation::list_identity_provider_configs::ListIdentityProviderConfigsOutput::identity_provider_configs): <p>The identity provider configurations for the cluster.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_identity_provider_configs::ListIdentityProviderConfigsOutput::next_token): <p>The <code>nextToken</code> value to include in a future <code>ListIdentityProviderConfigsResponse</code> request. When the results of a <code>ListIdentityProviderConfigsResponse</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p><note>  <p>This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.</p> </note>
    /// - On failure, responds with [`SdkError<ListIdentityProviderConfigsError>`](crate::operation::list_identity_provider_configs::ListIdentityProviderConfigsError)
    pub fn list_identity_provider_configs(
        &self,
    ) -> crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder {
        crate::operation::list_identity_provider_configs::builders::ListIdentityProviderConfigsFluentBuilder::new(self.handle.clone())
    }
}