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

CreateDashboardRequest

import type { CreateDashboardRequest } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";
interface CreateDashboardRequest {
clientToken?: string | null;
dashboardDefinition: string;
dashboardDescription?: string | null;
dashboardName: string;
projectId: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientToken?: string | null
[src]

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

§
dashboardDefinition: string
[src]

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

§
dashboardDescription?: string | null
[src]

A description for the dashboard.

§
dashboardName: string
[src]

A friendly name for the dashboard.

§
projectId: string
[src]

The ID of the project in which to create the dashboard.

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

A list of key-value pairs that contain metadata for the dashboard. For more information, see Tagging your IoT SiteWise resources in the IoT SiteWise User Guide.