![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.lambda.kotlin.inputs.GetEventInvokeConfigPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.lambda.kotlin.inputs
import com.pulumi.awsnative.lambda.inputs.GetEventInvokeConfigPlainArgs.builder
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
/**
*
* @property functionName The name of the Lambda function.
* @property qualifier The identifier of a version or alias.
*/
public data class GetEventInvokeConfigPlainArgs(
public val functionName: String,
public val qualifier: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.lambda.inputs.GetEventInvokeConfigPlainArgs =
com.pulumi.awsnative.lambda.inputs.GetEventInvokeConfigPlainArgs.builder()
.functionName(functionName.let({ args0 -> args0 }))
.qualifier(qualifier.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetEventInvokeConfigPlainArgs].
*/
@PulumiTagMarker
public class GetEventInvokeConfigPlainArgsBuilder internal constructor() {
private var functionName: String? = null
private var qualifier: String? = null
/**
* @param value The name of the Lambda function.
*/
@JvmName("mrbjtlsqjkhkbyph")
public suspend fun functionName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.functionName = mapped
}
/**
* @param value The identifier of a version or alias.
*/
@JvmName("yglavgognlruetcv")
public suspend fun qualifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.qualifier = mapped
}
internal fun build(): GetEventInvokeConfigPlainArgs = GetEventInvokeConfigPlainArgs(
functionName = functionName ?: throw PulumiNullFieldException("functionName"),
qualifier = qualifier ?: throw PulumiNullFieldException("qualifier"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy