com.pulumi.awsnative.iot.kotlin.inputs.TopicRuleLambdaActionArgs.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.inputs
import com.pulumi.awsnative.iot.inputs.TopicRuleLambdaActionArgs.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
/**
*
* @property functionArn The ARN of the Lambda function.
*/
public data class TopicRuleLambdaActionArgs(
public val functionArn: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iot.inputs.TopicRuleLambdaActionArgs =
com.pulumi.awsnative.iot.inputs.TopicRuleLambdaActionArgs.builder()
.functionArn(functionArn?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TopicRuleLambdaActionArgs].
*/
@PulumiTagMarker
public class TopicRuleLambdaActionArgsBuilder internal constructor() {
private var functionArn: Output? = null
/**
* @param value The ARN of the Lambda function.
*/
@JvmName("eniscnplbjwsumer")
public suspend fun functionArn(`value`: Output) {
this.functionArn = value
}
/**
* @param value The ARN of the Lambda function.
*/
@JvmName("euihmlcqgigyqvqu")
public suspend fun functionArn(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.functionArn = mapped
}
internal fun build(): TopicRuleLambdaActionArgs = TopicRuleLambdaActionArgs(
functionArn = functionArn,
)
}