Values.CreateDashboardRequestSourceCreates a dashboard in an IoT SiteWise Monitor project.
type nonrec t = {projectId : ID.t;The ID of the project in which to create the dashboard.
*)dashboardName : Name.t;A friendly name for the dashboard.
*)dashboardDescription : Description.t option;A description for the dashboard.
*)dashboardDefinition : DashboardDefinition.t;The dashboard definition specified in a JSON literal. IoT SiteWise Monitor (Classic) see Create dashboards (CLI) IoT SiteWise Monitor (AI-aware) see Create dashboards (CLI) in the IoT SiteWise User Guide
*)clientToken : ClientToken.t option;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.
*)}val make :
?dashboardDescription:??? ->
?clientToken:??? ->
?tags:??? ->
projectId:ID.t ->
dashboardName:Name.t ->
dashboardDefinition:DashboardDefinition.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ID.t ])
list ]