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

com.pulumi.aws.sesv2.kotlin.outputs.GetEmailIdentityMailFromAttributesResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.sesv2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getEmailIdentityMailFromAttributes.
 * @property behaviorOnMxFailure The action to take if the required MX record isn't found when you send an email. Valid values: `USE_DEFAULT_VALUE`, `REJECT_MESSAGE`.
 * @property emailIdentity
 * @property id The provider-assigned unique ID for this managed resource.
 * @property mailFromDomain The custom MAIL FROM domain that you want the verified identity to use.
 */
public data class GetEmailIdentityMailFromAttributesResult(
    public val behaviorOnMxFailure: String,
    public val emailIdentity: String,
    public val id: String,
    public val mailFromDomain: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.sesv2.outputs.GetEmailIdentityMailFromAttributesResult): GetEmailIdentityMailFromAttributesResult = GetEmailIdentityMailFromAttributesResult(
            behaviorOnMxFailure = javaType.behaviorOnMxFailure(),
            emailIdentity = javaType.emailIdentity(),
            id = javaType.id(),
            mailFromDomain = javaType.mailFromDomain(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy