ToCopyableBuilder<RecipientDsnFields.Builder,RecipientDsnFields>
@Generated("software.amazon.awssdk:codegen") public class RecipientDsnFields extends Object implements ToCopyableBuilder<RecipientDsnFields.Builder,RecipientDsnFields>
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.
Modifier and Type | Class | Description |
---|---|---|
static interface |
RecipientDsnFields.Builder |
Modifier and Type | Method | Description |
---|---|---|
String |
action() |
The action performed by the reporting mail transfer agent (MTA) as a result of its attempt to deliver the message
to the recipient address.
|
static RecipientDsnFields.Builder |
builder() |
|
String |
diagnosticCode() |
An extended explanation of what went wrong; this is usually an SMTP response.
|
boolean |
equals(Object obj) |
|
List<ExtensionField> |
extensionFields() |
Additional X-headers to include in the DSN.
|
String |
finalRecipient() |
The email address to which the message was ultimately delivered.
|
int |
hashCode() |
|
Date |
lastAttemptDate() |
The time the final delivery attempt was made, in RFC 822
date-time format.
|
String |
remoteMta() |
The MTA to which the remote MTA attempted to deliver the message, formatted as specified in RFC 3464 (
mta-name-type; mta-name ). |
static Class<? extends RecipientDsnFields.Builder> |
serializableBuilderClass() |
|
String |
status() |
The status code that indicates what went wrong.
|
RecipientDsnFields.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
public String finalRecipient()
The email address to which the message was ultimately delivered. This corresponds to the
Final-Recipient
in the DSN. If not specified, FinalRecipient
will be 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.
Do not prepend the FinalRecipient
email address with rfc 822;
, as described in RFC 3798.
Final-Recipient
in the DSN. If not specified, FinalRecipient
will be 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.
Do not prepend the FinalRecipient
email address with rfc 822;
, as described in
RFC 3798.
public String action()
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.
public String remoteMta()
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.
mta-name-type; mta-name
). This
parameter typically applies only to propagating synchronous bounces.public String status()
The status code that indicates what went wrong. This is required by RFC 3464.
public String diagnosticCode()
An extended explanation of what went wrong; this is usually an SMTP response. See RFC 3463 for the correct formatting of this parameter.
public Date lastAttemptDate()
The time the final delivery attempt was made, in RFC 822 date-time format.
public List<ExtensionField> extensionFields()
Additional X-headers to include in the DSN.
public RecipientDsnFields.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<RecipientDsnFields.Builder,RecipientDsnFields>
public static RecipientDsnFields.Builder builder()
public static Class<? extends RecipientDsnFields.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.