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

ConnectionConfiguration

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

Provides the information necessary to connect to a database.

interface ConnectionConfiguration {
DatabaseHost: string;
DatabaseName: string;
DatabasePort: number;
SecretArn: string;
TableName: string;
}

§Properties

§
DatabaseHost: string
[src]

The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

§
DatabaseName: string
[src]

The name of the database containing the document data.

§
DatabasePort: number
[src]

The port that the database uses for connections.

§
SecretArn: string
[src]

The Amazon Resource Name (ARN) of credentials stored in Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about Secrets Manager, see What Is Secrets Manager in the Secrets Manager user guide.

§
TableName: string
[src]

The name of the table that contains the document data.