com.pulumi.gcp.diagflow.kotlin.inputs.CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.diagflow.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.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 CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs(
public val allowPlaybackInterruption: Output? = null,
public val ssml: Output? = null,
public val text: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs =
com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs.builder()
.allowPlaybackInterruption(allowPlaybackInterruption?.applyValue({ args0 -> args0 }))
.ssml(ssml?.applyValue({ args0 -> args0 }))
.text(text?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs].
*/
@PulumiTagMarker
public class CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsBuilder 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("nwbopugdotswouak")
public suspend fun allowPlaybackInterruption(`value`: Output) {
this.allowPlaybackInterruption = value
}
/**
* @param value The SSML text to be synthesized. For more information, see SSML.
*/
@JvmName("vownkyyhwtjjtlnm")
public suspend fun ssml(`value`: Output) {
this.ssml = value
}
/**
* @param value The raw text to be synthesized.
*/
@JvmName("pomhttxufvgntkwi")
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("ibvcauoktwhvxyxi")
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("sjtkpnhaludkvimj")
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("ioyffapfaemkdmxx")
public suspend fun text(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.text = mapped
}
internal fun build(): CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs =
CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs(
allowPlaybackInterruption = allowPlaybackInterruption,
ssml = ssml,
text = text,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy