com.pulumi.aws.lex.kotlin.inputs.V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.lex.kotlin.inputs
import com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs.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 interpretedValue Value that Amazon Lex determines for the slot. The actual value depends on the setting of the value selection strategy for the bot. You can choose to use the value entered by the user, or you can have Amazon Lex choose the first value in the resolvedValues list.
*/
public data class V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs(
public val interpretedValue: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs =
com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs.builder()
.interpretedValue(interpretedValue?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs].
*/
@PulumiTagMarker
public class V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgsBuilder internal constructor() {
private var interpretedValue: Output? = null
/**
* @param value Value that Amazon Lex determines for the slot. The actual value depends on the setting of the value selection strategy for the bot. You can choose to use the value entered by the user, or you can have Amazon Lex choose the first value in the resolvedValues list.
*/
@JvmName("eutxdvnyidjggdlb")
public suspend fun interpretedValue(`value`: Output) {
this.interpretedValue = value
}
/**
* @param value Value that Amazon Lex determines for the slot. The actual value depends on the setting of the value selection strategy for the bot. You can choose to use the value entered by the user, or you can have Amazon Lex choose the first value in the resolvedValues list.
*/
@JvmName("omhifdalfeqrptba")
public suspend fun interpretedValue(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.interpretedValue = mapped
}
internal fun build(): V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs =
V2modelsIntentConfirmationSettingDeclinationNextStepIntentSlotValueArgs(
interpretedValue = interpretedValue,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy