Struct rusoto_cognito_idp::AdminRespondToAuthChallengeResponse[][src]

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

Responds to the authentication challenge, as an administrator.

Fields

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

The name of the challenge. 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 AdminRespondToAuthChallengeResponse
[src]

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

impl Debug for AdminRespondToAuthChallengeResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for AdminRespondToAuthChallengeResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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