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

GetCredentialsResponse

import type { GetCredentialsResponse } from "https://aws-api.deno.dev/v0.4/services/redshiftserverless.ts?docs=full";
interface GetCredentialsResponse {
dbPassword?: string | null;
dbUser?: string | null;
expiration?: Date | number | null;
nextRefreshTime?: 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.

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

The date and time the password in DbPassword expires.

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

The date and time of when the DbUser and DbPassword authorization refreshes.