Struct rusoto_cognito_identity::IdentityDescription[][src]

pub struct IdentityDescription {
    pub creation_date: Option<f64>,
    pub identity_id: Option<String>,
    pub last_modified_date: Option<f64>,
    pub logins: Option<Vec<String>>,
}

A description of the identity.

Fields

Date on which the identity was created.

A unique identifier in the format REGION:GUID.

Date on which the identity was last modified.

A set of optional name-value pairs that map provider names to provider tokens.

Trait Implementations

impl Default for IdentityDescription
[src]

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

impl Debug for IdentityDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for IdentityDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IdentityDescription
[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