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

ClusterCredentials

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

Temporary credentials with authorization to log on to an Amazon Redshift database.

interface ClusterCredentials {
DbPassword?: string | null;
DbUser?: string | null;
Expiration?: Date | number | null;
}

§Properties

§
DbPassword?: string | null
[src]

A temporary password that authorizes the user name returned by DbUser to log on to the database DbName.

§
DbUser?: string | null
[src]

A database user name that is authorized to log on to the database DbName using the password DbPassword. If the specified DbUser exists in the database, the new user name has the same database privileges as the the user named in DbUser. By default, the user is added to PUBLIC. If the DbGroups parameter is specifed, DbUser is added to the listed groups for any sessions created using these credentials.

§
Expiration?: Date | number | null
[src]

The date and time the password in DbPassword expires.