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]

[src]

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

impl Debug for ListIdentitiesInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListIdentitiesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations