/** *

For the action that is associated with a rule in a WebACL, specifies the action that you want AWS WAF to perform when a web request matches all of the conditions in a rule. For the default action in a WebACL, specifies the action that you want AWS WAF to take when a web request doesn't match all of the conditions in any of the rules in a WebACL.

*/ export interface _WafAction { /** *

Specifies how you want AWS WAF to respond to requests that match the settings in a Rule. Valid settings include the following:

*/ Type: "BLOCK" | "ALLOW" | "COUNT" | string; } export declare type _UnmarshalledWafAction = _WafAction;