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

WorkspaceDescription

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

Represents the properties of a workspace.

interface WorkspaceDescription {
alias?: string | null;
arn: string;
createdAt: Date | number;
prometheusEndpoint?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
workspaceId: string;
}

§Properties

§
alias?: string | null
[src]

Alias of this workspace.

§
arn: string
[src]

The Amazon Resource Name (ARN) of this workspace.

§
createdAt: Date | number
[src]

The time when the workspace was created.

§
prometheusEndpoint?: string | null
[src]

Prometheus endpoint URI.

§

The status of this workspace.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags of this workspace.

§
workspaceId: string
[src]

Unique string identifying this workspace.