Class: Aws::SESV2::Types::MessageHeader

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

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.

Returns:

  • (String)


4929
4930
4931
4932
4933
4934
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4929

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

#valueString

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.

Returns:

  • (String)


4929
4930
4931
4932
4933
4934
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4929

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