commonMain.aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointemail-jvm Show documentation
Show all versions of pinpointemail-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint Email
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointemail.model
import kotlin.collections.List
/**
* The action that you want Amazon Pinpoint to take 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 to `RejectMessage`, Amazon Pinpoint returns a `MailFromDomainNotVerified` error, and doesn't attempt to deliver the email.
*
* These behaviors are taken when the custom MAIL FROM domain configuration is in the `Pending`, `Failed`, and `TemporaryFailure` states.
*/
public sealed class BehaviorOnMxFailure {
public abstract val value: kotlin.String
public object RejectMessage : aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure() {
override val value: kotlin.String = "REJECT_MESSAGE"
override fun toString(): kotlin.String = "RejectMessage"
}
public object UseDefaultValue : aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure() {
override val value: kotlin.String = "USE_DEFAULT_VALUE"
override fun toString(): kotlin.String = "UseDefaultValue"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure = when (value) {
"REJECT_MESSAGE" -> RejectMessage
"USE_DEFAULT_VALUE" -> UseDefaultValue
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
RejectMessage,
UseDefaultValue,
)
}
}