Class: Aws::WAFV2::Types::OverrideAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::OverrideAction
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.
You can only use this for rule statements that reference a rule group,
like RuleGroupReferenceStatement
and ManagedRuleGroupStatement
.
Count
action, in your rule group
reference statement settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Types::CountAction
Override the rule group evaluation result to count only.
-
#none ⇒ Types::NoneAction
Don't override the rule group evaluation result.
Instance Attribute Details
#count ⇒ Types::CountAction
Override the rule group evaluation result to count only.
Count
action, in your rule group
reference statement settings.
6034 6035 6036 6037 6038 6039 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 6034 class OverrideAction < Struct.new( :count, :none) SENSITIVE = [] include Aws::Structure end |
#none ⇒ Types::NoneAction
Don't override the rule group evaluation result. This is the most common setting.
6034 6035 6036 6037 6038 6039 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 6034 class OverrideAction < Struct.new( :count, :none) SENSITIVE = [] include Aws::Structure end |