com.pulumi.aws.lex.kotlin.inputs.BotAbortStatementArgs.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.BotAbortStatementArgs.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 messages
* @property responseCard
*/
public data class BotAbortStatementArgs(
public val messages: Output>,
public val responseCard: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.lex.inputs.BotAbortStatementArgs =
com.pulumi.aws.lex.inputs.BotAbortStatementArgs.builder()
.messages(
messages.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.responseCard(responseCard?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BotAbortStatementArgs].
*/
@PulumiTagMarker
public class BotAbortStatementArgsBuilder internal constructor() {
private var messages: Output>? = null
private var responseCard: Output? = null
/**
* @param value
*/
@JvmName("futvlvqaweslknae")
public suspend fun messages(`value`: Output>) {
this.messages = value
}
@JvmName("lnbxruqtbquxgjjt")
public suspend fun messages(vararg values: Output) {
this.messages = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("cnubrnawipyjdoai")
public suspend fun messages(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy