com.pulumi.aws.lex.kotlin.inputs.IntentSlotValueElicitationPromptArgs.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.IntentSlotValueElicitationPromptArgs.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property maxAttempts The number of times to prompt the user for information. Must be a number between 1 and 5 (inclusive).
* @property messages
* @property responseCard
*/
public data class IntentSlotValueElicitationPromptArgs(
public val maxAttempts: Output,
public val messages: Output>,
public val responseCard: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.lex.inputs.IntentSlotValueElicitationPromptArgs =
com.pulumi.aws.lex.inputs.IntentSlotValueElicitationPromptArgs.builder()
.maxAttempts(maxAttempts.applyValue({ args0 -> args0 }))
.messages(
messages.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.responseCard(responseCard?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntentSlotValueElicitationPromptArgs].
*/
@PulumiTagMarker
public class IntentSlotValueElicitationPromptArgsBuilder internal constructor() {
private var maxAttempts: Output? = null
private var messages: Output>? = null
private var responseCard: Output? = null
/**
* @param value The number of times to prompt the user for information. Must be a number between 1 and 5 (inclusive).
*/
@JvmName("ghokbnuwgbafaqkb")
public suspend fun maxAttempts(`value`: Output) {
this.maxAttempts = value
}
/**
* @param value
*/
@JvmName("krrajotbcqoxkdal")
public suspend fun messages(`value`: Output>) {
this.messages = value
}
@JvmName("eboqcmwkiglejymr")
public suspend fun messages(vararg values: Output) {
this.messages = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("tgrpskqlnbxtycmi")
public suspend fun messages(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy