/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource schema for AWS::IoTSiteWise::Dashboard */ export interface AwsIotsitewiseDashboard { /** * The ID of the project in which to create the dashboard. */ ProjectId?: string; /** * The ID of the dashboard. */ DashboardId?: string; /** * A friendly name for the dashboard. */ DashboardName: string; /** * A description for the dashboard. */ DashboardDescription: string; /** * The dashboard definition specified in a JSON literal. */ DashboardDefinition: string; /** * The ARN of the dashboard. */ DashboardArn?: string; /** * A list of key-value pairs that contain metadata for the dashboard. */ Tags?: Tag[]; } /** * To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted */ export interface Tag { Key: string; Value: string; }