Struct rusoto_cognito_idp::ForgotPasswordRequest[][src]

pub struct ForgotPasswordRequest {
    pub analytics_metadata: Option<AnalyticsMetadataType>,
    pub client_id: String,
    pub secret_hash: Option<String>,
    pub user_context_data: Option<UserContextDataType>,
    pub username: String,
}

Represents the request to reset a user's password.

Fields

The Amazon Pinpoint analytics metadata for collecting metrics for ForgotPassword calls.

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.

Contextual data such as the user's device fingerprint, IP address, or location used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.

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

Trait Implementations

impl Default for ForgotPasswordRequest
[src]

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

impl Debug for ForgotPasswordRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ForgotPasswordRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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