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

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

  • (String)


1561
1562
1563
1564
1565
1566
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1561

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

#valueString

The value of the custom HTTP header.

Returns:

  • (String)


1561
1562
1563
1564
1565
1566
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1561

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