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

TemporaryCredential

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

Contains the data needed by RDP clients such as the Microsoft Remote Desktop Connection to log in to the instance.

interface TemporaryCredential {
InstanceId?: string | null;
Password?: string | null;
Username?: string | null;
ValidForInMinutes?: number | null;
}

§Properties

§
InstanceId?: string | null
[src]

The instance's AWS OpsWorks Stacks ID.

§
Password?: string | null
[src]

The password.

§
Username?: string | null
[src]

The user name.

§
ValidForInMinutes?: number | null
[src]

The length of time (in minutes) that the grant is valid. When the grant expires, at the end of this period, the user will no longer be able to use the credentials to log in. If they are logged in at the time, they will be automatically logged out.