com.pulumi.awsnative.ses.kotlin.outputs.ConfigurationSetEventDestinationSnsDestination.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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(),
)
}
}