Class: Aws::SES::Types::RecipientDsnFields
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::RecipientDsnFields
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
Recipient-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
-
#action ⇒ String
The action performed by the reporting mail transfer agent (MTA) as a result of its attempt to deliver the message to the recipient address.
-
#diagnostic_code ⇒ String
An extended explanation of what went wrong; this is usually an SMTP response.
-
#extension_fields ⇒ Array<Types::ExtensionField>
Additional X-headers to include in the DSN.
-
#final_recipient ⇒ String
The email address that the message was ultimately delivered to.
-
#last_attempt_date ⇒ Time
The time the final delivery attempt was made, in [RFC 822][1] date-time format.
-
#remote_mta ⇒ String
The MTA to which the remote MTA attempted to deliver the message, formatted as specified in [RFC 3464][1] (
mta-name-type; mta-name
). -
#status ⇒ String
The status code that indicates what went wrong.
Instance Attribute Details
#action ⇒ String
The action performed by the reporting mail transfer agent (MTA) as a result of its attempt to deliver the message to the recipient address. This is required by RFC 3464.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#diagnostic_code ⇒ String
An extended explanation of what went wrong; this is usually an SMTP response. See RFC 3463 for the correct formatting of this parameter.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#extension_fields ⇒ Array<Types::ExtensionField>
Additional X-headers to include in the DSN.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#final_recipient ⇒ String
The email address that the message was ultimately delivered to. This
corresponds to the Final-Recipient
in the DSN. If not specified,
FinalRecipient
is set to the Recipient
specified in the
BouncedRecipientInfo
structure. Either FinalRecipient
or the
recipient in BouncedRecipientInfo
must be a recipient of the
original bounced message.
FinalRecipient
email address with rfc 822;
,
as described in RFC 3798.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#last_attempt_date ⇒ Time
The time the final delivery attempt was made, in RFC 822 date-time format.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#remote_mta ⇒ String
The MTA to which the remote MTA attempted to deliver the message,
formatted as specified in RFC 3464 (mta-name-type; mta-name
).
This parameter typically applies only to propagating synchronous
bounces.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status code that indicates what went wrong. This is required by RFC 3464.
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3407 class RecipientDsnFields < Struct.new( :final_recipient, :action, :remote_mta, :status, :diagnostic_code, :last_attempt_date, :extension_fields) SENSITIVE = [] include Aws::Structure end |