Class MailFromAttributes
- java.lang.Object
-
- software.amazon.awssdk.services.pinpointemail.model.MailFromAttributes
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<MailFromAttributes.Builder,MailFromAttributes>
@Generated("software.amazon.awssdk:codegen") public final class MailFromAttributes extends Object implements SdkPojo, Serializable, ToCopyableBuilder<MailFromAttributes.Builder,MailFromAttributes>
A list of attributes that are associated with a MAIL FROM domain.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceMailFromAttributes.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BehaviorOnMxFailurebehaviorOnMxFailure()The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM domain.StringbehaviorOnMxFailureAsString()The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM domain.static MailFromAttributes.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringmailFromDomain()The name of a domain that an email identity uses as a custom MAIL FROM domain.MailFromDomainStatusmailFromDomainStatus()The status of the MAIL FROM domain.StringmailFromDomainStatusAsString()The status of the MAIL FROM domain.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends MailFromAttributes.Builder>serializableBuilderClass()MailFromAttributes.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
mailFromDomain
public final String mailFromDomain()
The name of a domain that an email identity uses as a custom MAIL FROM domain.
- Returns:
- The name of a domain that an email identity uses as a custom MAIL FROM domain.
-
mailFromDomainStatus
public final MailFromDomainStatus mailFromDomainStatus()
The status of the MAIL FROM domain. This status can have the following values:
-
PENDING– Amazon Pinpoint hasn't started searching for the MX record yet. -
SUCCESS– Amazon Pinpoint detected the required MX record for the MAIL FROM domain. -
FAILED– Amazon Pinpoint can't find the required MX record, or the record no longer exists. -
TEMPORARY_FAILURE– A temporary issue occurred, which prevented Amazon Pinpoint from determining the status of the MAIL FROM domain.
If the service returns an enum value that is not available in the current SDK version,
mailFromDomainStatuswill returnMailFromDomainStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommailFromDomainStatusAsString().- Returns:
- The status of the MAIL FROM domain. This status can have the following values:
-
PENDING– Amazon Pinpoint hasn't started searching for the MX record yet. -
SUCCESS– Amazon Pinpoint detected the required MX record for the MAIL FROM domain. -
FAILED– Amazon Pinpoint can't find the required MX record, or the record no longer exists. -
TEMPORARY_FAILURE– A temporary issue occurred, which prevented Amazon Pinpoint from determining the status of the MAIL FROM domain.
-
- See Also:
MailFromDomainStatus
-
-
mailFromDomainStatusAsString
public final String mailFromDomainStatusAsString()
The status of the MAIL FROM domain. This status can have the following values:
-
PENDING– Amazon Pinpoint hasn't started searching for the MX record yet. -
SUCCESS– Amazon Pinpoint detected the required MX record for the MAIL FROM domain. -
FAILED– Amazon Pinpoint can't find the required MX record, or the record no longer exists. -
TEMPORARY_FAILURE– A temporary issue occurred, which prevented Amazon Pinpoint from determining the status of the MAIL FROM domain.
If the service returns an enum value that is not available in the current SDK version,
mailFromDomainStatuswill returnMailFromDomainStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommailFromDomainStatusAsString().- Returns:
- The status of the MAIL FROM domain. This status can have the following values:
-
PENDING– Amazon Pinpoint hasn't started searching for the MX record yet. -
SUCCESS– Amazon Pinpoint detected the required MX record for the MAIL FROM domain. -
FAILED– Amazon Pinpoint can't find the required MX record, or the record no longer exists. -
TEMPORARY_FAILURE– A temporary issue occurred, which prevented Amazon Pinpoint from determining the status of the MAIL FROM domain.
-
- See Also:
MailFromDomainStatus
-
-
behaviorOnMxFailure
public final BehaviorOnMxFailure behaviorOnMxFailure()
The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM domain. When you set this value to
UseDefaultValue, Amazon Pinpoint uses amazonses.com as the MAIL FROM domain. When you set this value toRejectMessage, Amazon Pinpoint returns aMailFromDomainNotVerifiederror, and doesn't attempt to deliver the email.These behaviors are taken when the custom MAIL FROM domain configuration is in the
Pending,Failed, andTemporaryFailurestates.If the service returns an enum value that is not available in the current SDK version,
behaviorOnMxFailurewill returnBehaviorOnMxFailure.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frombehaviorOnMxFailureAsString().- Returns:
- The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM
domain. When you set this value to
UseDefaultValue, Amazon Pinpoint uses amazonses.com as the MAIL FROM domain. When you set this value toRejectMessage, Amazon Pinpoint returns aMailFromDomainNotVerifiederror, and doesn't attempt to deliver the email.These behaviors are taken when the custom MAIL FROM domain configuration is in the
Pending,Failed, andTemporaryFailurestates. - See Also:
BehaviorOnMxFailure
-
behaviorOnMxFailureAsString
public final String behaviorOnMxFailureAsString()
The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM domain. When you set this value to
UseDefaultValue, Amazon Pinpoint uses amazonses.com as the MAIL FROM domain. When you set this value toRejectMessage, Amazon Pinpoint returns aMailFromDomainNotVerifiederror, and doesn't attempt to deliver the email.These behaviors are taken when the custom MAIL FROM domain configuration is in the
Pending,Failed, andTemporaryFailurestates.If the service returns an enum value that is not available in the current SDK version,
behaviorOnMxFailurewill returnBehaviorOnMxFailure.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frombehaviorOnMxFailureAsString().- Returns:
- The action that Amazon Pinpoint to takes if it can't read the required MX record for a custom MAIL FROM
domain. When you set this value to
UseDefaultValue, Amazon Pinpoint uses amazonses.com as the MAIL FROM domain. When you set this value toRejectMessage, Amazon Pinpoint returns aMailFromDomainNotVerifiederror, and doesn't attempt to deliver the email.These behaviors are taken when the custom MAIL FROM domain configuration is in the
Pending,Failed, andTemporaryFailurestates. - See Also:
BehaviorOnMxFailure
-
toBuilder
public MailFromAttributes.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<MailFromAttributes.Builder,MailFromAttributes>
-
builder
public static MailFromAttributes.Builder builder()
-
serializableBuilderClass
public static Class<? extends MailFromAttributes.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-