Class: Aws::WAFV2::Types::Condition
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::Condition
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
A single match condition for a Filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_condition ⇒ Types::ActionCondition
A single action condition.
-
#label_name_condition ⇒ Types::LabelNameCondition
A single label name condition.
Instance Attribute Details
#action_condition ⇒ Types::ActionCondition
A single action condition. This is the action setting that a log record must contain in order to meet the condition.
936 937 938 939 940 941 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 936 class Condition < Struct.new( :action_condition, :label_name_condition) SENSITIVE = [] include Aws::Structure end |
#label_name_condition ⇒ Types::LabelNameCondition
A single label name condition. This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
936 937 938 939 940 941 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 936 class Condition < Struct.new( :action_condition, :label_name_condition) SENSITIVE = [] include Aws::Structure end |