aws-sdk-cognitosync 1.99.0

AWS SDK for Amazon Cognito Sync
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListIdentityPoolUsage`](crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder::set_next_token):<br>required: **false**<br>A pagination token for obtaining the next page of results.<br>
    ///   - [`max_results(i32)`](crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder::set_max_results):<br>required: **false**<br>The maximum number of results to be returned.<br>
    /// - On success, responds with [`ListIdentityPoolUsageOutput`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageOutput) with field(s):
    ///   - [`identity_pool_usages(Option<Vec::<IdentityPoolUsage>>)`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageOutput::identity_pool_usages): Usage information for the identity pools.
    ///   - [`max_results(i32)`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageOutput::max_results): The maximum number of results to be returned.
    ///   - [`count(i32)`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageOutput::count): Total number of identities for the identity pool.
    ///   - [`next_token(Option<String>)`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageOutput::next_token): A pagination token for obtaining the next page of results.
    /// - On failure, responds with [`SdkError<ListIdentityPoolUsageError>`](crate::operation::list_identity_pool_usage::ListIdentityPoolUsageError)
    pub fn list_identity_pool_usage(&self) -> crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder {
        crate::operation::list_identity_pool_usage::builders::ListIdentityPoolUsageFluentBuilder::new(self.handle.clone())
    }
}