Class: Aws::SES::Types::ExtensionField

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass ExtensionField data as a hash:

{
  name: "ExtensionFieldName", # required
  value: "ExtensionFieldValue", # required
}

Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.

Returns:

  • (String)


1737
1738
1739
1740
1741
# File 'lib/aws-sdk-ses/types.rb', line 1737

class ExtensionField < Struct.new(
  :name,
  :value)
  include Aws::Structure
end

#valueString

The value of the header to add. Must be less than 2048 characters, and must not contain newline characters (“\r” or “\n”).

Returns:

  • (String)


1737
1738
1739
1740
1741
# File 'lib/aws-sdk-ses/types.rb', line 1737

class ExtensionField < Struct.new(
  :name,
  :value)
  include Aws::Structure
end