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

WorkspaceSummary

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

Represents a summary of the properties of a workspace.

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

§Properties

§
alias?: string | null
[src]

Alias of this workspace.

§
arn: string
[src]

The AmazonResourceName of this workspace.

§
createdAt: Date | number
[src]

The time when the workspace was created.

§

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.