Class: Aws::WAFV2::Types::RuleActionOverride

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wafv2/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.

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

Instance Attribute Details

#action_to_useTypes::RuleAction

The override action to use, in place of the configured action of the rule in the rule group.

Returns:



7602
7603
7604
7605
7606
7607
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7602

class RuleActionOverride < Struct.new(
  :name,
  :action_to_use)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the rule to override.

Returns:

  • (String)


7602
7603
7604
7605
7606
7607
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7602

class RuleActionOverride < Struct.new(
  :name,
  :action_to_use)
  SENSITIVE = []
  include Aws::Structure
end