com.pulumi.awsnative.iot.kotlin.outputs.MitigationActionPublishFindingToSnsParams.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.iot.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Parameters, to define a mitigation action that publishes findings to Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.
* @property topicArn The ARN of the topic to which you want to publish the findings.
*/
public data class MitigationActionPublishFindingToSnsParams(
public val topicArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iot.outputs.MitigationActionPublishFindingToSnsParams): MitigationActionPublishFindingToSnsParams = MitigationActionPublishFindingToSnsParams(
topicArn = javaType.topicArn(),
)
}
}