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

ChallengeResponse

import type { ChallengeResponse } from "https://aws-api.deno.dev/v0.4/services/wafv2.ts?docs=full";

The result from the inspection of the web request for a valid challenge token.

interface ChallengeResponse {
FailureReason?: FailureReason | null;
ResponseCode?: number | null;
SolveTimestamp?: number | null;
}

§Properties

§
FailureReason?: FailureReason | null
[src]

The reason for failure, populated when the evaluation of the token fails.

§
ResponseCode?: number | null
[src]

The HTTP response code indicating the status of the challenge token in the web request. If the token is missing, invalid, or expired, this code is 202 Request Accepted.

§
SolveTimestamp?: number | null
[src]

The time that the challenge was last solved for the supplied token.