Class: Aws::WAF::Types::ExcludedRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::ExcludedRule
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
The rule to exclude from a rule group. This is applicable only when
the ActivatedRule
refers to a RuleGroup
. The rule must belong to
the RuleGroup
that is specified by the ActivatedRule
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_id ⇒ String
The unique identifier for the rule to exclude from the rule group.
Instance Attribute Details
#rule_id ⇒ String
The unique identifier for the rule to exclude from the rule group.
1583 1584 1585 1586 1587 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1583 class ExcludedRule < Struct.new( :rule_id) SENSITIVE = [] include Aws::Structure end |