[][src]Struct rusoto_cognito_identity::ListIdentitiesInput

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 Clone for ListIdentitiesInput
[src]

Performs copy-assignment from source. Read more

impl Default for ListIdentitiesInput
[src]

impl PartialEq<ListIdentitiesInput> for ListIdentitiesInput
[src]

impl Debug for ListIdentitiesInput
[src]

impl Serialize for ListIdentitiesInput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T