Interface CfnBot.KendraConfigurationProperty

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

@Stability(Stable) public static interface CfnBot.KendraConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides configuration information for the AMAZON.KendraSearchIntent intent. When you use this intent, Amazon Lex searches the specified Amazon Kendra index and returns documents from the index that match the user's utterance.

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.*;
 KendraConfigurationProperty kendraConfigurationProperty = KendraConfigurationProperty.builder()
         .kendraIndex("kendraIndex")
         // the properties below are optional
         .queryFilterString("queryFilterString")
         .queryFilterStringEnabled(false)
         .build();
 

See Also: