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

com.pulumi.gcp.diagflow.kotlin.inputs.CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.diagflow.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property allowPlaybackInterruption (Output)
 * Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.
 * @property ssml The SSML text to be synthesized. For more information, see SSML.
 * @property text The raw text to be synthesized.
 */
public data class CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs(
    public val allowPlaybackInterruption: Output? = null,
    public val ssml: Output? = null,
    public val text: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs =
        com.pulumi.gcp.diagflow.inputs.CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.builder()
            .allowPlaybackInterruption(allowPlaybackInterruption?.applyValue({ args0 -> args0 }))
            .ssml(ssml?.applyValue({ args0 -> args0 }))
            .text(text?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs].
 */
@PulumiTagMarker
public class CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsBuilder internal constructor() {
    private var allowPlaybackInterruption: Output? = null

    private var ssml: Output? = null

    private var text: Output? = null

    /**
     * @param value (Output)
     * Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.
     */
    @JvmName("delttwnysvvfinnh")
    public suspend fun allowPlaybackInterruption(`value`: Output) {
        this.allowPlaybackInterruption = value
    }

    /**
     * @param value The SSML text to be synthesized. For more information, see SSML.
     */
    @JvmName("drxuxygqisuwptti")
    public suspend fun ssml(`value`: Output) {
        this.ssml = value
    }

    /**
     * @param value The raw text to be synthesized.
     */
    @JvmName("rhpcohejrgtqavxy")
    public suspend fun text(`value`: Output) {
        this.text = value
    }

    /**
     * @param value (Output)
     * Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.
     */
    @JvmName("hxbruifxqeqgkxbk")
    public suspend fun allowPlaybackInterruption(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.allowPlaybackInterruption = mapped
    }

    /**
     * @param value The SSML text to be synthesized. For more information, see SSML.
     */
    @JvmName("gjvwjqimtgtrjllt")
    public suspend fun ssml(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ssml = mapped
    }

    /**
     * @param value The raw text to be synthesized.
     */
    @JvmName("sqhpnisblrokpbei")
    public suspend fun text(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.text = mapped
    }

    internal fun build(): CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs =
        CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs(
            allowPlaybackInterruption = allowPlaybackInterruption,
            ssml = ssml,
            text = text,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy