Interface CfnBotPropsMixin.PromptAttemptSpecificationProperty

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

@Stability(Stable) public static interface CfnBotPropsMixin.PromptAttemptSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the settings on a prompt attempt.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.lex.*;
 PromptAttemptSpecificationProperty promptAttemptSpecificationProperty = PromptAttemptSpecificationProperty.builder()
         .allowedInputTypes(AllowedInputTypesProperty.builder()
                 .allowAudioInput(false)
                 .allowDtmfInput(false)
                 .build())
         .allowInterrupt(false)
         .audioAndDtmfInputSpecification(AudioAndDTMFInputSpecificationProperty.builder()
                 .audioSpecification(AudioSpecificationProperty.builder()
                         .endTimeoutMs(123)
                         .maxLengthMs(123)
                         .build())
                 .dtmfSpecification(DTMFSpecificationProperty.builder()
                         .deletionCharacter("deletionCharacter")
                         .endCharacter("endCharacter")
                         .endTimeoutMs(123)
                         .maxLength(123)
                         .build())
                 .startTimeoutMs(123)
                 .build())
         .textInputSpecification(TextInputSpecificationProperty.builder()
                 .startTimeoutMs(123)
                 .build())
         .build();
 

See Also: