com.pulumi.aws.lex.kotlin.inputs.V2modelsSlotSubSlotSettingSlotSpecificationArgs.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.V2modelsSlotSubSlotSettingSlotSpecificationArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property mapBlockKey
* @property slotTypeId Unique identifier assigned to the slot type.
* @property valueElicitationSettings Elicitation setting details for constituent sub slots of a composite slot.
* See the `value_elicitation_setting` argument reference below.
*/
public data class V2modelsSlotSubSlotSettingSlotSpecificationArgs(
public val mapBlockKey: Output,
public val slotTypeId: Output,
public val valueElicitationSettings: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.lex.inputs.V2modelsSlotSubSlotSettingSlotSpecificationArgs =
com.pulumi.aws.lex.inputs.V2modelsSlotSubSlotSettingSlotSpecificationArgs.builder()
.mapBlockKey(mapBlockKey.applyValue({ args0 -> args0 }))
.slotTypeId(slotTypeId.applyValue({ args0 -> args0 }))
.valueElicitationSettings(
valueElicitationSettings?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [V2modelsSlotSubSlotSettingSlotSpecificationArgs].
*/
@PulumiTagMarker
public class V2modelsSlotSubSlotSettingSlotSpecificationArgsBuilder internal constructor() {
private var mapBlockKey: Output? = null
private var slotTypeId: Output? = null
private var valueElicitationSettings:
Output>? = null
/**
* @param value
*/
@JvmName("vtokpjihjfobismc")
public suspend fun mapBlockKey(`value`: Output) {
this.mapBlockKey = value
}
/**
* @param value Unique identifier assigned to the slot type.
*/
@JvmName("ndlubufmrqvpiwrk")
public suspend fun slotTypeId(`value`: Output) {
this.slotTypeId = value
}
/**
* @param value Elicitation setting details for constituent sub slots of a composite slot.
* See the `value_elicitation_setting` argument reference below.
*/
@JvmName("tmudybnhocaqndaa")
public suspend fun valueElicitationSettings(`value`: Output>) {
this.valueElicitationSettings = value
}
@JvmName("slwfhienyuvlkkio")
public suspend fun valueElicitationSettings(vararg values: Output) {
this.valueElicitationSettings = Output.all(values.asList())
}
/**
* @param values Elicitation setting details for constituent sub slots of a composite slot.
* See the `value_elicitation_setting` argument reference below.
*/
@JvmName("moccmclkxycqifco")
public suspend fun valueElicitationSettings(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy