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 result type of the authentication result.

Fields

The access token of the authentication result.

The expiration period of the authentication result.

The ID token of the authentication result.

The new device metadata from an authentication result.

The refresh token of the authentication result.

The token type of the authentication result.

Trait Implementations

impl Default for AuthenticationResultType
[src]

[src]

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

impl Debug for AuthenticationResultType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AuthenticationResultType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations