Struct rusoto_cognito_idp::AssociateSoftwareTokenResponse[][src]

pub struct AssociateSoftwareTokenResponse {
    pub secret_code: Option<String>,
    pub session: Option<String>,
}

Fields

A unique generated shared secret code that is used in the TOTP algorithm to generate a one time code.

The session which should be passed both ways in challenge-response calls to the service. This allows authentication of the user as part of the MFA setup process.

Trait Implementations

impl Default for AssociateSoftwareTokenResponse
[src]

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

impl Debug for AssociateSoftwareTokenResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for AssociateSoftwareTokenResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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