Module Values.CreateDashboardRequestSource

Creates a new dashboard that can contain multiple widgets displaying cost and usage data. You can add custom widgets or use predefined widgets, arranging them in your preferred layout.

Sourcetype nonrec t = {
  1. name : DashboardName.t;
    (*

    The name of the dashboard. The name must be unique within your account.

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

    A description of the dashboard's purpose or contents.

    *)
  3. widgets : WidgetList.t;
    (*

    An array of widget configurations that define the visualizations to be displayed in the dashboard. Each dashboard can contain up to 20 widgets.

    *)
  4. resourceTags : ResourceTagList.t option;
    (*

    The tags to apply to the dashboard resource for organization and management.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?resourceTags:??? -> name:DashboardName.t -> widgets:WidgetList.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 DashboardName.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