Struct rusoto_cognito_identity::ListIdentitiesInput[][src]

pub struct ListIdentitiesInput {
    pub hide_disabled: Option<bool>,
    pub identity_pool_id: String,
    pub max_results: i64,
    pub next_token: Option<String>,
}

Input to the ListIdentities action.

Fields

An optional boolean parameter that allows you to hide disabled identities. If omitted, the ListIdentities API will include disabled identities in the response.

An identity pool ID in the format REGION:GUID.

The maximum number of identities to return.

A pagination token.

Trait Implementations

impl Default for ListIdentitiesInput
[src]

Returns the "default value" for a type. Read more

impl Debug for ListIdentitiesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListIdentitiesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListIdentitiesInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations