Module Values_1.DashboardSummarySource

Dashboard summary.

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

    The Amazon Resource Name (ARN) of the resource.

    *)
  2. dashboardId : Values_0.ShortRestrictiveResourceId.t option;
    (*

    Dashboard ID.

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

    A display name for the dashboard.

    *)
  4. createdTime : Values_0.Timestamp.t option;
    (*

    The time that this dashboard was created.

    *)
  5. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The last time that this dashboard was updated.

    *)
  6. publishedVersionNumber : VersionNumber.t option;
    (*

    Published version number.

    *)
  7. lastPublishedTime : Values_0.Timestamp.t option;
    (*

    The last time that this dashboard was published.

    *)
}
Sourceval make : ?arn:??? -> ?dashboardId:??? -> ?name:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> ?publishedVersionNumber:??? -> ?lastPublishedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of VersionNumber.t | `String of Values_0.Arn.t | `Timestamp of Values_0.Timestamp.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