Class: Aws::SES::Types::MessageDsn
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::MessageDsn
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
When making an API call, you may pass MessageDsn data as a hash:
{
reporting_mta: "ReportingMta", # required
arrival_date: Time.now,
extension_fields: [
{
name: "ExtensionFieldName", # required
value: "ExtensionFieldValue", # required
},
],
}
Message-related information 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arrival_date ⇒ Time
When the message was received by the reporting mail transfer agent (MTA), in [RFC 822][1] date-time format.
-
#extension_fields ⇒ Array<Types::ExtensionField>
Additional X-headers to include in the DSN.
-
#reporting_mta ⇒ String
The reporting MTA that attempted to deliver the message, formatted as specified in [RFC 3464][1] (
mta-name-type; mta-name
).
Instance Attribute Details
#arrival_date ⇒ Time
When the message was received by the reporting mail transfer agent (MTA), in RFC 822 date-time format.
3366 3367 3368 3369 3370 3371 3372 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3366 class MessageDsn < Struct.new( :reporting_mta, :arrival_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#extension_fields ⇒ Array<Types::ExtensionField>
Additional X-headers to include in the DSN.
3366 3367 3368 3369 3370 3371 3372 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3366 class MessageDsn < Struct.new( :reporting_mta, :arrival_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#reporting_mta ⇒ String
The reporting MTA that attempted to deliver the message, formatted
as specified in RFC 3464 (mta-name-type; mta-name
). The
default value is dns; inbound-smtp.[region].amazonaws.com
.
3366 3367 3368 3369 3370 3371 3372 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3366 class MessageDsn < Struct.new( :reporting_mta, :arrival_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |