All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.lex.kotlin.inputs.BotAbortStatementMessageArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.lex.kotlin.inputs

import com.pulumi.aws.lex.inputs.BotAbortStatementMessageArgs.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 kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property content The text of the message.
 * @property contentType The content type of the message string.
 * @property groupNumber Identifies the message group that the message belongs to. When a group
 * is assigned to a message, Amazon Lex returns one message from each group in the response.
 */
public data class BotAbortStatementMessageArgs(
    public val content: Output,
    public val contentType: Output,
    public val groupNumber: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.lex.inputs.BotAbortStatementMessageArgs =
        com.pulumi.aws.lex.inputs.BotAbortStatementMessageArgs.builder()
            .content(content.applyValue({ args0 -> args0 }))
            .contentType(contentType.applyValue({ args0 -> args0 }))
            .groupNumber(groupNumber?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BotAbortStatementMessageArgs].
 */
@PulumiTagMarker
public class BotAbortStatementMessageArgsBuilder internal constructor() {
    private var content: Output? = null

    private var contentType: Output? = null

    private var groupNumber: Output? = null

    /**
     * @param value The text of the message.
     */
    @JvmName("mokgfbynemwevjwx")
    public suspend fun content(`value`: Output) {
        this.content = value
    }

    /**
     * @param value The content type of the message string.
     */
    @JvmName("ktusqyrqtjdahivh")
    public suspend fun contentType(`value`: Output) {
        this.contentType = value
    }

    /**
     * @param value Identifies the message group that the message belongs to. When a group
     * is assigned to a message, Amazon Lex returns one message from each group in the response.
     */
    @JvmName("iphonqidnwhfpkmg")
    public suspend fun groupNumber(`value`: Output) {
        this.groupNumber = value
    }

    /**
     * @param value The text of the message.
     */
    @JvmName("eohhvffvgbggxndh")
    public suspend fun content(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.content = mapped
    }

    /**
     * @param value The content type of the message string.
     */
    @JvmName("vxjnyqwxkfleadxo")
    public suspend fun contentType(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.contentType = mapped
    }

    /**
     * @param value Identifies the message group that the message belongs to. When a group
     * is assigned to a message, Amazon Lex returns one message from each group in the response.
     */
    @JvmName("dtvcrippcgqqcfqf")
    public suspend fun groupNumber(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.groupNumber = mapped
    }

    internal fun build(): BotAbortStatementMessageArgs = BotAbortStatementMessageArgs(
        content = content ?: throw PulumiNullFieldException("content"),
        contentType = contentType ?: throw PulumiNullFieldException("contentType"),
        groupNumber = groupNumber,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy