Class: Aws::WAFV2::Types::HTTPHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::HTTPHeader
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
Part of the response from GetSampledRequests. This is a complex type that appears as ‘Headers` in the response syntax. `HTTPHeader` contains the names and values of all of the headers that appear in one of the web requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the HTTP header.
-
#value ⇒ String
The value of the HTTP header.
Instance Attribute Details
#name ⇒ String
The name of the HTTP header.
3558 3559 3560 3561 3562 3563 |
# File 'lib/aws-sdk-wafv2/types.rb', line 3558 class HTTPHeader < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the HTTP header.
3558 3559 3560 3561 3562 3563 |
# File 'lib/aws-sdk-wafv2/types.rb', line 3558 class HTTPHeader < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |