Class: Aws::WAFV2::Types::RuleSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::RuleSummary
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
High-level information about a Rule, returned by operations like
DescribeManagedRuleGroup. This provides information like the ID, that
you can use to retrieve and manage a RuleGroup
, and the ARN, that
you provide to the RuleGroupReferenceStatement to use the rule group
in a Rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::RuleAction
The action that WAF should take on a web request when it matches a rule's statement.
-
#name ⇒ String
The name of the rule.
Instance Attribute Details
#action ⇒ Types::RuleAction
The action that WAF should take on a web request when it matches a rule's statement. Settings at the web ACL level can override the rule action setting.
7974 7975 7976 7977 7978 7979 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7974 class RuleSummary < Struct.new( :name, :action) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the rule.
7974 7975 7976 7977 7978 7979 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7974 class RuleSummary < Struct.new( :name, :action) SENSITIVE = [] include Aws::Structure end |