Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

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)

3055
3056
3057
3058
3059
3060
3061
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3055

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

#conditionsArray<Types::Condition>

Match conditions for the filter.

Returns:


3055
3056
3057
3058
3059
3060
3061
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3055

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)

3055
3056
3057
3058
3059
3060
3061
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3055

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