
com.pulumi.awsnative.ssmincidents.kotlin.inputs.ResponsePlanNotificationTargetItemArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ssmincidents.kotlin.inputs
import com.pulumi.awsnative.ssmincidents.inputs.ResponsePlanNotificationTargetItemArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A notification target.
* @property snsTopicArn The Amazon Resource Name (ARN) of the Amazon SNS topic.
*/
public data class ResponsePlanNotificationTargetItemArgs(
public val snsTopicArn: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ssmincidents.inputs.ResponsePlanNotificationTargetItemArgs =
com.pulumi.awsnative.ssmincidents.inputs.ResponsePlanNotificationTargetItemArgs.builder()
.snsTopicArn(snsTopicArn?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ResponsePlanNotificationTargetItemArgs].
*/
@PulumiTagMarker
public class ResponsePlanNotificationTargetItemArgsBuilder internal constructor() {
private var snsTopicArn: Output? = null
/**
* @param value The Amazon Resource Name (ARN) of the Amazon SNS topic.
*/
@JvmName("wgqptvmmwrbfqsbc")
public suspend fun snsTopicArn(`value`: Output) {
this.snsTopicArn = value
}
/**
* @param value The Amazon Resource Name (ARN) of the Amazon SNS topic.
*/
@JvmName("rkmcypdttrcwwweo")
public suspend fun snsTopicArn(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.snsTopicArn = mapped
}
internal fun build(): ResponsePlanNotificationTargetItemArgs =
ResponsePlanNotificationTargetItemArgs(
snsTopicArn = snsTopicArn,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy