Struct rusoto_cognito_idp::VerifyUserAttributeRequest[][src]

pub struct VerifyUserAttributeRequest {
    pub access_token: String,
    pub attribute_name: String,
    pub code: String,
}

Represents the request to verify user attributes.

Fields

Represents the access token of the request to verify user attributes.

The attribute name in the request to verify user attributes.

The verification code in the request to verify user attributes.

Trait Implementations

impl Default for VerifyUserAttributeRequest
[src]

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

impl Debug for VerifyUserAttributeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for VerifyUserAttributeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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