Values.DashboardReferenceSourceContains basic information about a dashboard, including its ARN, name, type, and timestamps.
type nonrec t = {arn : DashboardArn.t option;The ARN of the referenced dashboard.
*)name : DashboardName.t option;The name of the referenced dashboard.
*)description : Description.t option;The description of the referenced dashboard.
*)type_ : DashboardType.t option;The dashboard type.
*)createdAt : GenericTimeStamp.t option;The timestamp when the dashboard was created.
*)updatedAt : GenericTimeStamp.t option;The timestamp when the dashboard was last modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DashboardArn.t
| `Timestamp of GenericTimeStamp.t ])
list ]