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

DatabaseConfiguration

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

Provides the information necessary to connect a database to an index.

interface DatabaseConfiguration {
AclConfiguration?: AclConfiguration | null;
ColumnConfiguration: ColumnConfiguration;
ConnectionConfiguration: ConnectionConfiguration;
DatabaseEngineType: DatabaseEngineType;
SqlConfiguration?: SqlConfiguration | null;
VpcConfiguration?: DataSourceVpcConfiguration | null;
}

§Properties

§
AclConfiguration?: AclConfiguration | null
[src]

Information about the database column that provides information for user context filtering.

§
ColumnConfiguration: ColumnConfiguration
[src]

Information about where the index should get the document information from the database.

§
ConnectionConfiguration: ConnectionConfiguration
[src]

The information necessary to connect to a database.

§
DatabaseEngineType: DatabaseEngineType
[src]

The type of database engine that runs the database.

§
SqlConfiguration?: SqlConfiguration | null
[src]

Provides information about how Amazon Kendra uses quote marks around SQL identifiers when querying a database data source.

§
VpcConfiguration?: DataSourceVpcConfiguration | null
[src]