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

DefaultAction

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

In a "WebACL", this is the action that you want WAF to perform when a web request doesn't match any of the rules in the WebACL. The default action must be a terminating action.

interface DefaultAction {
Allow?: AllowAction | null;
Block?: BlockAction | null;
}

§Properties

§
Allow?: AllowAction | null
[src]

Specifies that WAF should allow requests by default.

§
Block?: BlockAction | null
[src]

Specifies that WAF should block requests by default.