Values.DashboardEntrySourceRepresents a specific dashboard.
type nonrec t = {dashboardName : DashboardName.t option;The name of the dashboard.
*)dashboardArn : DashboardArn.t option;The Amazon Resource Name (ARN) of the dashboard.
*)lastModified : LastModified.t option;The time stamp of when the dashboard was last modified, either by an API call or through the console. This number is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.
*)size : Size.t option;The size of the dashboard, in bytes.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of Size.t
| `String of DashboardName.t
| `Timestamp of LastModified.t ])
list ]