Class: Aws::Transfer::Types::CustomHttpHeader

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transfer/types.rb

Overview

Represents a custom HTTP header that can be included in AS2 messages. Each header consists of a key-value pair.

Constant Summary collapse

SENSITIVE =
[:key, :value]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the custom HTTP header.

Returns:



1564
1565
1566
1567
1568
1569
# File 'lib/aws-sdk-transfer/types.rb', line 1564

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

#valueString

The value of the custom HTTP header.

Returns:



1564
1565
1566
1567
1568
1569
# File 'lib/aws-sdk-transfer/types.rb', line 1564

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