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

CookieMatchPattern

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

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": {"KeyToInclude1", "KeyToInclude2", "KeyToInclude3"} }

interface CookieMatchPattern {
All?: All | null;
ExcludedCookies?: string[] | null;
IncludedCookies?: string[] | null;
}

§Properties

§
All?: All | null
[src]

Inspect all cookies.

§
ExcludedCookies?: string[] | null
[src]

Inspect only the cookies whose keys don't match any of the strings specified here.

§
IncludedCookies?: string[] | null
[src]

Inspect only the cookies that have a key that matches one of the strings specified here.