Class: Aws::SESV2::Types::MessageHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::MessageHeader
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
Contains the name and value of a message header that you add to an email.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the message header.
-
#value ⇒ String
The value of the message header.
Instance Attribute Details
#name ⇒ String
The name of the message header. The message header name has to meet the following criteria:
-
Can contain any printable ASCII character (33 - 126) except for colon (:).
-
Can contain no more than 126 characters.
4968 4969 4970 4971 4972 4973 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4968 class MessageHeader < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the message header. The message header value has to meet the following criteria:
-
Can contain any printable ASCII character.
-
Can contain no more than 870 characters.
4968 4969 4970 4971 4972 4973 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4968 class MessageHeader < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |