Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RespondToAuthChallengeResponse

import type { RespondToAuthChallengeResponse } from "https://aws-api.deno.dev/v0.3/services/cognitoidentityserviceprovider.ts?docs=full";

The response to respond to the authentication challenge.

interface RespondToAuthChallengeResponse {
AuthenticationResult?: AuthenticationResultType | null;
ChallengeName?: ChallengeNameType | null;
ChallengeParameters?: {
[key: string]: string | null | undefined;
}
| null;
Session?: string | null;
}

§Properties

§
AuthenticationResult?: AuthenticationResultType | null
[src]

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

§
ChallengeName?: ChallengeNameType | null
[src]

The challenge name. For more information, see InitiateAuth.

§
ChallengeParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

The challenge parameters. For more information, see InitiateAuth.

§
Session?: string | null
[src]

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