Class: Aws::WAFV2::Types::LabelNameCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::LabelNameCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
A single label name condition for a Condition in a logging filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#label_name ⇒ String
The label name that a log record must contain in order to meet the condition.
Instance Attribute Details
#label_name ⇒ String
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
4300 4301 4302 4303 4304 |
# File 'lib/aws-sdk-wafv2/types.rb', line 4300 class LabelNameCondition < Struct.new( :label_name) SENSITIVE = [] include Aws::Structure end |