Class: Aws::WAFV2::Types::ActionCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::ActionCondition
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
Note:
When making an API call, you may pass ActionCondition data as a hash:
{
action: "ALLOW", # required, accepts ALLOW, BLOCK, COUNT, CAPTCHA, EXCLUDED_AS_COUNT
}
A single action condition for a Condition in a logging filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
The action setting that a log record must contain in order to meet the condition.
Instance Attribute Details
#action ⇒ String
The action setting that a log record must contain in order to meet the condition.
29 30 31 32 33 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 29 class ActionCondition < Struct.new( :action) SENSITIVE = [] include Aws::Structure end |