Class: Aws::WAFV2::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::Filter
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
A single logging filter, used in LoggingFilter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#behavior ⇒ String
How to handle logs that satisfy the filter's conditions and requirement.
-
#conditions ⇒ Array<Types::Condition>
Match conditions for the filter.
-
#requirement ⇒ String
Logic to apply to the filtering conditions.
Instance Attribute Details
#behavior ⇒ String
How to handle logs that satisfy the filter's conditions and requirement.
2603 2604 2605 2606 2607 2608 2609 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2603 class Filter < Struct.new( :behavior, :requirement, :conditions) SENSITIVE = [] include Aws::Structure end |
#conditions ⇒ Array<Types::Condition>
Match conditions for the filter.
2603 2604 2605 2606 2607 2608 2609 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2603 class Filter < Struct.new( :behavior, :requirement, :conditions) SENSITIVE = [] include Aws::Structure end |
#requirement ⇒ String
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
2603 2604 2605 2606 2607 2608 2609 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2603 class Filter < Struct.new( :behavior, :requirement, :conditions) SENSITIVE = [] include Aws::Structure end |