com.pulumi.aws.devopsguru.kotlin.outputs.GetNotificationChannelSn.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.devopsguru.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property topicArn Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
*/
public data class GetNotificationChannelSn(
public val topicArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.devopsguru.outputs.GetNotificationChannelSn): GetNotificationChannelSn = GetNotificationChannelSn(
topicArn = javaType.topicArn(),
)
}
}