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.4/services/grafana.ts?docs=full";

A structure that contains some information about one workspace in the account.

interface WorkspaceSummary {
authentication: AuthenticationSummary;
created: Date | number;
description?: string | null;
endpoint: string;
grafanaVersion: string;
id: string;
modified: Date | number;
name?: string | null;
notificationDestinations?: NotificationDestinationType[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§

A structure containing information about the authentication methods used in the workspace.

§
created: Date | number
[src]

The date that the workspace was created.

§
description?: string | null
[src]

The customer-entered description of the workspace.

§
endpoint: string
[src]

The URL endpoint to use to access the Grafana console in the workspace.

§
grafanaVersion: string
[src]

The Grafana version that the workspace is running.

§
id: string
[src]

The unique ID of the workspace.

§
modified: Date | number
[src]

The most recent date that the workspace was modified.

§
name?: string | null
[src]

The name of the workspace.

§
notificationDestinations?: NotificationDestinationType[] | null
[src]

The Amazon Web Services notification channels that Amazon Managed Grafana can automatically create IAM roles and permissions for, which allows Amazon Managed Grafana to use these channels.

§

The current status of the workspace.

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

The list of tags associated with the workspace.