Struct rusoto_cognito_idp::VerifySoftwareTokenRequest[][src]

pub struct VerifySoftwareTokenRequest {
    pub access_token: Option<String>,
    pub friendly_device_name: Option<String>,
    pub session: Option<String>,
    pub user_code: String,
}

Fields

The access token.

The friendly device name.

The session which should be passed both ways in challenge-response calls to the service.

The one time password computed using the secret code returned by

Trait Implementations

impl Default for VerifySoftwareTokenRequest
[src]

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

impl Debug for VerifySoftwareTokenRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for VerifySoftwareTokenRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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