Interface CfnBot.IntentDisambiguationSettingsProperty

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

@Stability(Stable) public static interface CfnBot.IntentDisambiguationSettingsProperty extends software.amazon.jsii.JsiiSerializable
Configures the Intent Disambiguation feature that helps resolve ambiguous user inputs when multiple intents could match.

When enabled, the system presents clarifying questions to users, helping them specify their exact intent for improved conversation accuracy.

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.*;
 IntentDisambiguationSettingsProperty intentDisambiguationSettingsProperty = IntentDisambiguationSettingsProperty.builder()
         .enabled(false)
         // the properties below are optional
         .customDisambiguationMessage("customDisambiguationMessage")
         .maxDisambiguationIntents(123)
         .build();
 

See Also: