Class: Aws::SESV2::Types::MessageHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::MessageHeader
- Defined in:
- gems/aws-sdk-sesv2/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.
6141 6142 6143 6144 6145 6146 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6141 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 995 characters.
The combined length of the header name and value must not exceed 996 characters.
6141 6142 6143 6144 6145 6146 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6141 class MessageHeader < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |