Struct rusoto_cognito_idp::ResendConfirmationCodeRequest [] [src]

pub struct ResendConfirmationCodeRequest {
    pub client_id: String,
    pub secret_hash: Option<String>,
    pub username: String,
}

Represents the request to resend the confirmation code.

Fields

The ID of the client associated with the user pool.

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 to whom you wish to resend a confirmation code.

Trait Implementations

impl Default for ResendConfirmationCodeRequest
[src]

[src]

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

impl Debug for ResendConfirmationCodeRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ResendConfirmationCodeRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations