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

DataSourceToIndexFieldMapping

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

Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

interface DataSourceToIndexFieldMapping {
DataSourceFieldName: string;
DateFieldFormat?: string | null;
IndexFieldName: string;
}

§Properties

§
DataSourceFieldName: string
[src]

The name of the column or attribute in the data source.

§
DateFieldFormat?: string | null
[src]

The type of data stored in the column or attribute.

§
IndexFieldName: string
[src]

The name of the field in the index.