Struct rusoto_cognito_idp::RespondToAuthChallengeResponse[][src]

pub struct RespondToAuthChallengeResponse {
    pub authentication_result: Option<AuthenticationResultType>,
    pub challenge_name: Option<String>,
    pub challenge_parameters: Option<HashMap<String, String>>,
    pub session: Option<String>,
}

The response to respond to the authentication challenge.

Fields

The result returned by the server in response to the request to respond to the authentication challenge.

The challenge name. For more information, see .

The challenge parameters. For more information, see .

The session which should be passed both ways in challenge-response calls to the service. If the or 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.

Trait Implementations

impl Default for RespondToAuthChallengeResponse
[src]

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

impl Debug for RespondToAuthChallengeResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for RespondToAuthChallengeResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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