Class: Aws::WAFV2::Types::RuleActionOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::RuleActionOverride
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
Action setting to use in the place of a rule action that is configured inside the rule group. You specify one override for each rule whose action you want to change.
<note markdown=“1”> Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn’t exactly match the case-sensitive name of an existing rule in the rule group.
</note>
You can use overrides for testing, for example you can override all of rule actions to ‘Count` and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_to_use ⇒ Types::RuleAction
The override action to use, in place of the configured action of the rule in the rule group.
-
#name ⇒ String
The name of the rule to override.
Instance Attribute Details
#action_to_use ⇒ Types::RuleAction
The override action to use, in place of the configured action of the rule in the rule group.
8392 8393 8394 8395 8396 8397 |
# File 'lib/aws-sdk-wafv2/types.rb', line 8392 class RuleActionOverride < Struct.new( :name, :action_to_use) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the rule to override.
<note markdown=“1”> Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn’t exactly match the case-sensitive name of an existing rule in the rule group.
</note>
8392 8393 8394 8395 8396 8397 |
# File 'lib/aws-sdk-wafv2/types.rb', line 8392 class RuleActionOverride < Struct.new( :name, :action_to_use) SENSITIVE = [] include Aws::Structure end |