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 InitiateAuth.

The challenge parameters. For more information, see InitiateAuth.

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

Trait Implementations

impl Default for RespondToAuthChallengeResponse
[src]

[src]

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

impl Debug for RespondToAuthChallengeResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RespondToAuthChallengeResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations