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

RDSSourceConfig

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

Contains information about the Amazon Relational Database Service (RDS) configuration.

interface RDSSourceConfig {
DatabaseHost?: string | null;
DatabaseName?: string | null;
DatabasePort?: number | null;
DBInstanceIdentifier?: string | null;
RoleArn?: string | null;
SecretManagerArn?: string | null;
TableName?: string | null;
VpcConfiguration?: VpcConfiguration | null;
}

§Properties

§
DatabaseHost?: string | null
[src]

The host name of the database.

§
DatabaseName?: string | null
[src]

The name of the RDS database.

§
DatabasePort?: number | null
[src]

The port number where the database can be accessed.

§
DBInstanceIdentifier?: string | null
[src]

A string identifying the database instance.

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the role.

§
SecretManagerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the AWS Secrets Manager role.

§
TableName?: string | null
[src]

The name of the table in the database.

§
VpcConfiguration?: VpcConfiguration | null
[src]

An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.