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

com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariation.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.outputs

import kotlin.Suppress

/**
 *
 * @property customPayload Configuration block for a message in a custom format defined by the client application. See `custom_payload`.
 * @property imageResponseCard Configuration block for a message that defines a response card that the client application can show to the user. See `image_response_card`.
 * @property plainTextMessage Configuration block for a message in plain text format. See `plain_text_message`.
 * @property ssmlMessage Configuration block for a message in Speech Synthesis Markup Language (SSML). See `ssml_message`.
 */
public data class
V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariation(
    public val customPayload: V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationCustomPayload? =
        null,
    public val imageResponseCard: V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationImageResponseCard? =
        null,
    public val plainTextMessage: V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationPlainTextMessage? =
        null,
    public val ssmlMessage: V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationSsmlMessage? =
        null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.lex.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariation): V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariation =
            V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariation(
                customPayload = javaType.customPayload().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationCustomPayload.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                imageResponseCard = javaType.imageResponseCard().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationImageResponseCard.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                plainTextMessage = javaType.plainTextMessage().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationPlainTextMessage.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                ssmlMessage = javaType.ssmlMessage().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponseMessageGroupVariationSsmlMessage.Companion.toKotlin(args0)
                    })
                }).orElse(null),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy