Interface CfnBot.SlotValueSelectionSettingProperty

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

@Stability(Stable) public static interface CfnBot.SlotValueSelectionSettingProperty extends software.amazon.jsii.JsiiSerializable
Contains settings used by Amazon Lex to select a slot value.

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.*;
 SlotValueSelectionSettingProperty slotValueSelectionSettingProperty = SlotValueSelectionSettingProperty.builder()
         .resolutionStrategy("resolutionStrategy")
         // the properties below are optional
         .advancedRecognitionSetting(AdvancedRecognitionSettingProperty.builder()
                 .audioRecognitionStrategy("audioRecognitionStrategy")
                 .build())
         .regexFilter(SlotValueRegexFilterProperty.builder()
                 .pattern("pattern")
                 .build())
         .build();
 

See Also: