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

ColumnConfiguration

import type { ColumnConfiguration } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides information about how Amazon Kendra should use the columns of a database in an index.

interface ColumnConfiguration {
ChangeDetectingColumns: string[];
DocumentDataColumnName: string;
DocumentIdColumnName: string;
DocumentTitleColumnName?: string | null;
FieldMappings?: DataSourceToIndexFieldMapping[] | null;
}

§Properties

§
ChangeDetectingColumns: string[]
[src]

One to five columns that indicate when a document in the database has changed.

§
DocumentDataColumnName: string
[src]

The column that contains the contents of the document.

§
DocumentIdColumnName: string
[src]

The column that provides the document's unique identifier.

§
DocumentTitleColumnName?: string | null
[src]

The column that contains the title of the document.

§
FieldMappings?: DataSourceToIndexFieldMapping[] | null
[src]

An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.