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

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

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.aws.lex.inputs.BotClarificationPromptMessageArgs.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 BotClarificationPromptMessageArgs(
    public val content: Output,
    public val contentType: Output,
    public val groupNumber: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.lex.inputs.BotClarificationPromptMessageArgs =
        com.pulumi.aws.lex.inputs.BotClarificationPromptMessageArgs.builder()
            .content(content.applyValue({ args0 -> args0 }))
            .contentType(contentType.applyValue({ args0 -> args0 }))
            .groupNumber(groupNumber?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BotClarificationPromptMessageArgs].
 */
@PulumiTagMarker
public class BotClarificationPromptMessageArgsBuilder 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("msmoaldsvvdmqjth")
    public suspend fun content(`value`: Output) {
        this.content = value
    }

    /**
     * @param value The content type of the message string.
     */
    @JvmName("ibtdaicwlbbmpgha")
    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("cthwrdyxljgdwwio")
    public suspend fun groupNumber(`value`: Output) {
        this.groupNumber = value
    }

    /**
     * @param value The text of the message.
     */
    @JvmName("apxtikqfxpvvshqr")
    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("dvkmwivfswatrwot")
    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("knyhijsaexymesig")
    public suspend fun groupNumber(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.groupNumber = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy