Module Values.DashboardEntrySource

Represents a specific dashboard.

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

    The name of the dashboard.

    *)
  2. dashboardArn : DashboardArn.t option;
    (*

    The Amazon Resource Name (ARN) of the dashboard.

    *)
  3. 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.

    *)
  4. size : Size.t option;
    (*

    The size of the dashboard, in bytes.

    *)
}
Sourceval make : ?dashboardName:??? -> ?dashboardArn:??? -> ?lastModified:??? -> ?size:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Size.t | `String of DashboardName.t | `Timestamp of LastModified.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