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

The challenge parameters. For more information, see AdminInitiateAuth.

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 AdminRespondToAuthChallengeResponse
[src]

[src]

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

impl Debug for AdminRespondToAuthChallengeResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AdminRespondToAuthChallengeResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations