Module Values.CreateDashboardRequestSource

Creates a dashboard in an IoT SiteWise Monitor project.

Sourcetype nonrec t = {
  1. projectId : ID.t;
    (*

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

    *)
  2. dashboardName : Name.t;
    (*

    A friendly name for the dashboard.

    *)
  3. dashboardDescription : Description.t option;
    (*

    A description for the dashboard.

    *)
  4. 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

    *)
  5. 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.

    *)
  6. tags : TagMap.t option;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?dashboardDescription:??? -> ?clientToken:??? -> ?tags:??? -> projectId:ID.t -> dashboardName:Name.t -> dashboardDefinition:DashboardDefinition.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ID.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t