Class: Aws::WAFV2::Types::LoggingFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb

Overview

Filtering that specifies which web requests are kept in the logs and which are dropped, defined for a web ACL's LoggingConfiguration.

You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_behaviorString

Default handling for logs that don't match any of the specified filtering conditions.

Returns:

  • (String)


5111
5112
5113
5114
5115
5116
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5111

class LoggingFilter < Struct.new(
  :filters,
  :default_behavior)
  SENSITIVE = []
  include Aws::Structure
end

#filtersArray<Types::Filter>

The filters that you want to apply to the logs.

Returns:



5111
5112
5113
5114
5115
5116
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5111

class LoggingFilter < Struct.new(
  :filters,
  :default_behavior)
  SENSITIVE = []
  include Aws::Structure
end