Struct rusoto_cognito_idp::AuthenticationResultType[][src]

pub struct AuthenticationResultType {
    pub access_token: Option<String>,
    pub expires_in: Option<i64>,
    pub id_token: Option<String>,
    pub new_device_metadata: Option<NewDeviceMetadataType>,
    pub refresh_token: Option<String>,
    pub token_type: Option<String>,
}

The authentication result.

Fields

The access token.

The expiration period of the authentication result.

The ID token.

The new device metadata from an authentication result.

The refresh token.

The token type.

Trait Implementations

impl Default for AuthenticationResultType
[src]

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

impl Debug for AuthenticationResultType
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthenticationResultType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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