Class: Aws::WAFV2::Types::Filter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#behaviorString

How to handle logs that satisfy the filter's conditions and requirement.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
2576
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2570

class Filter < Struct.new(
  :behavior,
  :requirement,
  :conditions)
  SENSITIVE = []
  include Aws::Structure
end

#conditionsArray<Types::Condition>

Match conditions for the filter.

Returns:



2570
2571
2572
2573
2574
2575
2576
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2570

class Filter < Struct.new(
  :behavior,
  :requirement,
  :conditions)
  SENSITIVE = []
  include Aws::Structure
end

#requirementString

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.

Returns:

  • (String)


2570
2571
2572
2573
2574
2575
2576
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 2570

class Filter < Struct.new(
  :behavior,
  :requirement,
  :conditions)
  SENSITIVE = []
  include Aws::Structure
end