Struct rusoto_cognito_idp::RespondToAuthChallengeRequest[][src]

pub struct RespondToAuthChallengeRequest {
    pub analytics_metadata: Option<AnalyticsMetadataType>,
    pub challenge_name: String,
    pub challenge_responses: Option<HashMap<String, String>>,
    pub client_id: String,
    pub session: Option<String>,
    pub user_context_data: Option<UserContextDataType>,
}

The request to respond to an authentication challenge.

Fields

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

The challenge name. For more information, see .

ADMIN_NO_SRP_AUTH is not a valid value.

The challenge responses. These are inputs corresponding to the value of ChallengeName, for example:

  • SMSMFA: SMSMFACODE, USERNAME, SECRETHASH (if app client is configured with client secret).

  • PASSWORDVERIFIER: PASSWORDCLAIMSIGNATURE, PASSWORDCLAIMSECRETBLOCK, TIMESTAMP, USERNAME, SECRETHASH (if app client is configured with client secret).

  • NEWPASSWORDREQUIRED: NEWPASSWORD, any other required attributes, USERNAME, SECRET_HASH (if app client is configured with client secret).

The app client ID.

The session which should be passed both ways in challenge-response calls to the service. If InitiateAuth or RespondToAuthChallenge API call determines that the caller needs to go through another challenge, they return a session with other challenge parameters. This session should be passed as it is to the next RespondToAuthChallenge API call.

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.

Trait Implementations

impl Default for RespondToAuthChallengeRequest
[src]

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

impl Debug for RespondToAuthChallengeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RespondToAuthChallengeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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