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

RedshiftParameters

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

The parameters for Amazon Redshift. The ClusterId field can be blank if Host and Port are both set. The Host and Port fields can be blank if the ClusterId field is set.

interface RedshiftParameters {
ClusterId?: string | null;
Database: string;
Host?: string | null;
Port?: number | null;
}

§Properties

§
ClusterId?: string | null
[src]

Cluster ID. This field can be blank if the Host and Port are provided.

§
Database: string
[src]

Database.

§
Host?: string | null
[src]

Host. This field can be blank if ClusterId is provided.

§
Port?: number | null
[src]

Port. This field can be blank if the ClusterId is provided.