Interface CfnBot.AudioAndDTMFInputSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.AudioAndDTMFInputSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.AudioAndDTMFInputSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the audio and DTMF input specification.

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.*;
 AudioAndDTMFInputSpecificationProperty audioAndDTMFInputSpecificationProperty = AudioAndDTMFInputSpecificationProperty.builder()
         .startTimeoutMs(123)
         // the properties below are optional
         .audioSpecification(AudioSpecificationProperty.builder()
                 .endTimeoutMs(123)
                 .maxLengthMs(123)
                 .build())
         .dtmfSpecification(DTMFSpecificationProperty.builder()
                 .deletionCharacter("deletionCharacter")
                 .endCharacter("endCharacter")
                 .endTimeoutMs(123)
                 .maxLength(123)
                 .build())
         .build();