Class: Aws::WAFV2::Types::HTTPHeader

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wafv2/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

Instance Attribute Details

#nameString

The name of the HTTP header.

Returns:

  • (String)


3498
3499
3500
3501
3502
3503
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3498

class HTTPHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the HTTP header.

Returns:

  • (String)


3498
3499
3500
3501
3502
3503
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3498

class HTTPHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end