Module Values.UpdateDashboardRequestSource

Updates an IoT SiteWise Monitor dashboard.

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

    The ID of the dashboard to update.

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

    A new friendly name for the dashboard.

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

    A new description for the dashboard.

    *)
  4. dashboardDefinition : DashboardDefinition.t;
    (*

    The new dashboard definition, as 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?dashboardDescription:??? -> ?clientToken:??? -> dashboardId:ID.t -> dashboardName:Name.t -> dashboardDefinition:DashboardDefinition.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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