/** *

The action to take if any rule within the RuleGroup matches a request.

*/ export interface _WafOverrideAction { /** *

COUNT overrides the action specified by the individual rule within a RuleGroup . If set to NONE, the rule's action will take place.

*/ Type: "NONE" | "COUNT" | string; } export declare type _UnmarshalledWafOverrideAction = _WafOverrideAction;