Module Values.DashboardReferenceSource

Contains basic information about a dashboard, including its ARN, name, type, and timestamps.

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

    The ARN of the referenced dashboard.

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

    The name of the referenced dashboard.

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

    The description of the referenced dashboard.

    *)
  4. type_ : DashboardType.t option;
    (*

    The dashboard type.

    *)
  5. createdAt : GenericTimeStamp.t option;
    (*

    The timestamp when the dashboard was created.

    *)
  6. updatedAt : GenericTimeStamp.t option;
    (*

    The timestamp when the dashboard was last modified.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?type_:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DashboardArn.t | `Timestamp of GenericTimeStamp.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