![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.lex.kotlin.outputs.BotDtmfSpecification.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.lex.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Specifies the settings on DTMF input.
* @property deletionCharacter The DTMF character that clears the accumulated DTMF digits and immediately ends the input.
* @property endCharacter The DTMF character that immediately ends input. If the user does not press this character, the input ends after the end timeout.
* @property endTimeoutMs How long the bot should wait after the last DTMF character input before assuming that the input has concluded.
* @property maxLength The maximum number of DTMF digits allowed in an utterance.
*/
public data class BotDtmfSpecification(
public val deletionCharacter: String,
public val endCharacter: String,
public val endTimeoutMs: Int,
public val maxLength: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.lex.outputs.BotDtmfSpecification): BotDtmfSpecification = BotDtmfSpecification(
deletionCharacter = javaType.deletionCharacter(),
endCharacter = javaType.endCharacter(),
endTimeoutMs = javaType.endTimeoutMs(),
maxLength = javaType.maxLength(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy