@Stability(value=Stable)
public static interface CfnBot.KendraConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getKendraIndex()
The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the AMAZON.KendraSearchIntent intent to search.
|
default String |
getQueryFilterString()
A query filter that Amazon Lex sends to Amazon Kendra to filter the response from a query.
|
default Object |
getQueryFilterStringEnabled()
Determines whether the AMAZON.KendraSearchIntent intent uses a custom query string to query the Amazon Kendra index.
|
@Stability(value=Stable) @NotNull String getKendraIndex()
@Stability(value=Stable) @Nullable default String getQueryFilterString()
The filter is in the format defined by Amazon Kendra.
@Stability(value=Stable) @Nullable default Object getQueryFilterStringEnabled()
@Stability(value=Stable) static CfnBot.KendraConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.