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

com.pulumi.awsnative.ses.kotlin.outputs.ConfigurationSetEventDestinationSnsDestination.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: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ses.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * An object that contains SNS topic ARN associated event destination.
 * @property topicArn The ARN of the Amazon SNS topic for email sending events. You can find the ARN of a topic by using the [ListTopics](https://docs.aws.amazon.com/sns/latest/api/API_ListTopics.html) Amazon SNS operation.
 * For more information about Amazon SNS topics, see the [Amazon SNS Developer Guide](https://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html) .
 */
public data class ConfigurationSetEventDestinationSnsDestination(
    public val topicArn: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.ses.outputs.ConfigurationSetEventDestinationSnsDestination): ConfigurationSetEventDestinationSnsDestination =
            ConfigurationSetEventDestinationSnsDestination(
                topicArn = javaType.topicArn(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy