Struct rusoto_cognito_idp::ConfirmForgotPasswordRequest [] [src]

pub struct ConfirmForgotPasswordRequest {
    pub client_id: String,
    pub confirmation_code: String,
    pub password: String,
    pub secret_hash: Option<String>,
    pub username: String,
}

The request representing the confirmation for a password reset.

Fields

The app client ID of the app associated with the user pool.

The confirmation code sent by a user's request to retrieve a forgotten password. For more information, see ForgotPassword

The password sent by a user's request to retrieve a forgotten password.

A keyed-hash message authentication code (HMAC) calculated using the secret key of a user pool client and username plus the client ID in the message.

The user name of the user for whom you want to enter a code to retrieve a forgotten password.

Trait Implementations

impl Default for ConfirmForgotPasswordRequest
[src]

[src]

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

impl Debug for ConfirmForgotPasswordRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConfirmForgotPasswordRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations