public static interface CfnBot.KendraConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnBot.KendraConfigurationProperty.Builder
A builder for
CfnBot.KendraConfigurationProperty |
static class |
CfnBot.KendraConfigurationProperty.Jsii$Proxy
An implementation for
CfnBot.KendraConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnBot.KendraConfigurationProperty.Builder |
builder() |
java.lang.String |
getKendraIndex()
The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the AMAZON.KendraSearchIntent intent to search.
|
default java.lang.String |
getQueryFilterString()
A query filter that Amazon Lex sends to Amazon Kendra to filter the response from a query.
|
default java.lang.Object |
getQueryFilterStringEnabled()
Determines whether the AMAZON.KendraSearchIntent intent uses a custom query string to query the Amazon Kendra index.
|
java.lang.String getKendraIndex()
default java.lang.String getQueryFilterString()
The filter is in the format defined by Amazon Kendra.
default java.lang.Object getQueryFilterStringEnabled()
static CfnBot.KendraConfigurationProperty.Builder builder()