Class: Aws::WAFV2::Types::LoggingFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::LoggingFilter
- 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
-
#default_behavior ⇒ String
Default handling for logs that don't match any of the specified filtering conditions.
-
#filters ⇒ Array<Types::Filter>
The filters that you want to apply to the logs.
Instance Attribute Details
#default_behavior ⇒ String
Default handling for logs that don't match any of the specified filtering conditions.
5239 5240 5241 5242 5243 5244 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5239 class LoggingFilter < Struct.new( :filters, :default_behavior) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::Filter>
The filters that you want to apply to the logs.
5239 5240 5241 5242 5243 5244 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5239 class LoggingFilter < Struct.new( :filters, :default_behavior) SENSITIVE = [] include Aws::Structure end |