All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.pinpointemail.model.BehaviorOnMxFailure.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// 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,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy