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

FirewallManagerStatement

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

The processing guidance for an Firewall Manager rule. This is like a regular rule "Statement", but it can only contain a rule group reference.

interface FirewallManagerStatement {
ManagedRuleGroupStatement?: ManagedRuleGroupStatement | null;
RuleGroupReferenceStatement?: RuleGroupReferenceStatement | null;
}

§Properties

§
ManagedRuleGroupStatement?: ManagedRuleGroupStatement | null
[src]

A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling "ListAvailableManagedRuleGroups".

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. It can only be referenced as a top-level statement within a rule.

Note: You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet or the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet. For more information, see WAF Pricing.

§
RuleGroupReferenceStatement?: RuleGroupReferenceStatement | null
[src]

A rule statement used to run the rules that are defined in a "RuleGroup". To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You can only use a rule group reference statement at the top level inside a web ACL.