Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

KendraConfiguration

import type { KendraConfiguration } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

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.

interface KendraConfiguration {
kendraIndex: string;
queryFilterString?: string | null;
queryFilterStringEnabled?: boolean | null;
}

§Properties

§
kendraIndex: string
[src]

The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the AMAZON.KendraSearchIntent intent to search. The index must be in the same account and Region as the Amazon Lex bot.

§
queryFilterString?: string | null
[src]

A query filter that Amazon Lex sends to Amazon Kendra to filter the response from a query. The filter is in the format defined by Amazon Kendra. For more information, see Filtering queries.

§
queryFilterStringEnabled?: boolean | null
[src]

Determines whether the AMAZON.KendraSearchIntent intent uses a custom query string to query the Amazon Kendra index.