Class: Aws::Transfer::Types::CustomHttpHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::CustomHttpHeader
- 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
-
#key ⇒ String
The name of the custom HTTP header.
-
#value ⇒ String
The value of the custom HTTP header.
Instance Attribute Details
#key ⇒ String
The name of the custom HTTP header.
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 |
#value ⇒ String
The value of the custom HTTP header.
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 |