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

CreateWorkspaceResponse

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

Represents the output of a CreateWorkspace operation.

interface CreateWorkspaceResponse {
arn: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
workspaceId: string;
}

§Properties

§
arn: string
[src]

The ARN of the workspace that was just created.

§

The status of the workspace that was just created (usually CREATING).

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

The tags of this workspace.

§
workspaceId: string
[src]

The generated ID of the workspace that was just created.