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

AdminRespondToAuthChallengeResponse

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

Responds to the authentication challenge, as an administrator.

interface AdminRespondToAuthChallengeResponse {
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 authentication request.

§
ChallengeName?: ChallengeNameType | null
[src]

The name of the challenge. For more information, see AdminInitiateAuth.

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

The challenge parameters. For more information, see AdminInitiateAuth.

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