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

DescribeDashboardResponse

import type { DescribeDashboardResponse } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";
interface DescribeDashboardResponse {
dashboardArn: string;
dashboardCreationDate: Date | number;
dashboardDefinition: string;
dashboardDescription?: string | null;
dashboardId: string;
dashboardLastUpdateDate: Date | number;
dashboardName: string;
projectId: string;
}

§Properties

§
dashboardArn: string
[src]

The ARN of the dashboard, which has the following format.

arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId}
§
dashboardCreationDate: Date | number
[src]

The date the dashboard was created, in Unix epoch time.

§
dashboardDefinition: string
[src]

The dashboard's definition JSON literal. For detailed information, see Creating dashboards (CLI) in the IoT SiteWise User Guide.

§
dashboardDescription?: string | null
[src]

The dashboard's description.

§
dashboardId: string
[src]

The ID of the dashboard.

§
dashboardLastUpdateDate: Date | number
[src]

The date the dashboard was last updated, in Unix epoch time.

§
dashboardName: string
[src]

The name of the dashboard.

§
projectId: string
[src]

The ID of the project that the dashboard is in.