com.pulumi.awsnative.bedrock.kotlin.inputs.FlowLambdaFunctionFlowNodeConfigurationArgs.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.bedrock.kotlin.inputs
import com.pulumi.awsnative.bedrock.inputs.FlowLambdaFunctionFlowNodeConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Lambda function flow node configuration
* @property lambdaArn ARN of a Lambda.
*/
public data class FlowLambdaFunctionFlowNodeConfigurationArgs(
public val lambdaArn: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.bedrock.inputs.FlowLambdaFunctionFlowNodeConfigurationArgs =
com.pulumi.awsnative.bedrock.inputs.FlowLambdaFunctionFlowNodeConfigurationArgs.builder()
.lambdaArn(lambdaArn.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FlowLambdaFunctionFlowNodeConfigurationArgs].
*/
@PulumiTagMarker
public class FlowLambdaFunctionFlowNodeConfigurationArgsBuilder internal constructor() {
private var lambdaArn: Output? = null
/**
* @param value ARN of a Lambda.
*/
@JvmName("wxicaxshqdmeojqm")
public suspend fun lambdaArn(`value`: Output) {
this.lambdaArn = value
}
/**
* @param value ARN of a Lambda.
*/
@JvmName("bqiyudvgcvfsgqki")
public suspend fun lambdaArn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.lambdaArn = mapped
}
internal fun build(): FlowLambdaFunctionFlowNodeConfigurationArgs =
FlowLambdaFunctionFlowNodeConfigurationArgs(
lambdaArn = lambdaArn ?: throw PulumiNullFieldException("lambdaArn"),
)
}