Interface CfnBot.DTMFSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.DTMFSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.DTMFSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the DTMF input specifications.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.lex.*; DTMFSpecificationProperty dTMFSpecificationProperty = DTMFSpecificationProperty.builder() .deletionCharacter("deletionCharacter") .endCharacter("endCharacter") .endTimeoutMs(123) .maxLength(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.DTMFSpecificationProperty
static final class
An implementation forCfnBot.DTMFSpecificationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The DTMF character that clears the accumulated DTMF digits and immediately ends the input.The DTMF character that immediately ends input.How long the bot should wait after the last DTMF character input before assuming that the input has concluded.The maximum number of DTMF digits allowed in an utterance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeletionCharacter
The DTMF character that clears the accumulated DTMF digits and immediately ends the input.- See Also:
-
getEndCharacter
The DTMF character that immediately ends input.If the user does not press this character, the input ends after the end timeout.
- See Also:
-
getEndTimeoutMs
How long the bot should wait after the last DTMF character input before assuming that the input has concluded.- See Also:
-
getMaxLength
The maximum number of DTMF digits allowed in an utterance.- See Also:
-
builder
-