Interface CfnBotPropsMixin.SlotValueSelectionSettingProperty

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

@Stability(Stable) public static interface CfnBotPropsMixin.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.mixins.preview.services.lex.mixins.*;
 SlotValueSelectionSettingProperty slotValueSelectionSettingProperty = SlotValueSelectionSettingProperty.builder()
         .advancedRecognitionSetting(AdvancedRecognitionSettingProperty.builder()
                 .audioRecognitionStrategy("audioRecognitionStrategy")
                 .build())
         .regexFilter(SlotValueRegexFilterProperty.builder()
                 .pattern("pattern")
                 .build())
         .resolutionStrategy("resolutionStrategy")
         .build();
 

See Also: