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

ResponseInspectionBodyContains

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

Configures inspection of the response body. WAF can inspect the first 65,536 bytes (64 KB) of the response body. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet.

Note: Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

interface ResponseInspectionBodyContains {
FailureStrings: string[];
SuccessStrings: string[];
}

§Properties

§
FailureStrings: string[]
[src]

Strings in the body of the response that indicate a failed login attempt. To be counted as a failed login, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON example: "FailureStrings": [ "Login failed" ]

§
SuccessStrings: string[]
[src]

Strings in the body of the response that indicate a successful login attempt. To be counted as a successful login, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

JSON example: "SuccessStrings": [ "Login successful", "Welcome to our site!" ]