Module Values.UpdateDashboardRequestSource

Updates an existing dashboard's properties, including its name, description, and widget configurations.

Sourcetype nonrec t = {
  1. arn : DashboardArn.t;
    (*

    The ARN of the dashboard to update.

    *)
  2. name : DashboardName.t;
    (*

    The new name for the dashboard.

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

    The new description for the dashboard.

    *)
  4. widgets : WidgetList.t option;
    (*

    The updated array of widget configurations for the dashboard. Replaces all existing widgets.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?widgets:??? -> arn:DashboardArn.t -> name:DashboardName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of WidgetWidth.t | `List of [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of GenericString.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list | `Structure of (string * Awso.Botodata.value) list ]) list ]) list ] list | `String of WidgetId.t ]) list ] list | `String of DashboardArn.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