Class: Aws::WAFV2::Types::SingleHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::SingleHeader
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
Inspect one of the headers in the web request, identified by name, for
example, User-Agent
or Referer
. The name isn't case sensitive.
You can filter and inspect all headers with the FieldToMatch
setting
Headers
.
This is used to indicate the web request component to inspect, in the FieldToMatch specification.
Example JSON: "SingleHeader": \{ "Name": "haystack" \}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the query header to inspect.
Instance Attribute Details
#name ⇒ String
The name of the query header to inspect.
8090 8091 8092 8093 8094 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 8090 class SingleHeader < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |