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

RuleActionOverride

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

Action setting to use in the place of a rule action that is configured inside the rule group. You specify one override for each rule whose action you want to change.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

interface RuleActionOverride {
ActionToUse: RuleAction;
Name: string;
}

§Properties

§
ActionToUse: RuleAction
[src]

The override action to use, in place of the configured action of the rule in the rule group.

§
Name: string
[src]

The name of the rule to override.