
com.pulumi.aws.lex.kotlin.inputs.V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.lex.kotlin.inputs
import com.pulumi.aws.lex.inputs.V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs.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.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property message Configuration block for the primary message that Amazon Lex should send to the user.
* See the `aws.lex.V2modelsIntent` resource for details on the `message` argument reference - they are identical.
* @property variations Configuration blocks for message variations to send to the user.
* When variations are defined, Amazon Lex chooses the primary message or one of the variations to send to the user.
* See the `aws.lex.V2modelsIntent` resource for details on the `variation` argument reference - they are identical.
*/
public data class
V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs(
public val message: Output,
public val variations: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.lex.inputs.V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs =
com.pulumi.aws.lex.inputs.V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs.builder()
.message(message.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.variations(
variations?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgs].
*/
@PulumiTagMarker
public class
V2modelsSlotValueElicitationSettingWaitAndContinueSpecificationStillWaitingResponseMessageGroupArgsBuilder
internal constructor() {
private var message:
Output? =
null
private var variations:
Output>? =
null
/**
* @param value Configuration block for the primary message that Amazon Lex should send to the user.
* See the `aws.lex.V2modelsIntent` resource for details on the `message` argument reference - they are identical.
*/
@JvmName("amjugxevfhlytdaa")
public suspend fun message(`value`: Output) {
this.message = value
}
/**
* @param value Configuration blocks for message variations to send to the user.
* When variations are defined, Amazon Lex chooses the primary message or one of the variations to send to the user.
* See the `aws.lex.V2modelsIntent` resource for details on the `variation` argument reference - they are identical.
*/
@JvmName("yujpcqfgyivjqvvf")
public suspend fun variations(`value`: Output>) {
this.variations = value
}
@JvmName("ffttybyoctgmisqe")
public suspend fun variations(vararg values: Output) {
this.variations = Output.all(values.asList())
}
/**
* @param values Configuration blocks for message variations to send to the user.
* When variations are defined, Amazon Lex chooses the primary message or one of the variations to send to the user.
* See the `aws.lex.V2modelsIntent` resource for details on the `variation` argument reference - they are identical.
*/
@JvmName("arxomtysntpnikqa")
public suspend fun variations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy