Module Values.InstanceGroupTimelineSource

The timeline of the instance group lifecycle.

Sourcetype nonrec t = {
  1. creationDateTime : Date.t option;
    (*

    The creation date and time of the instance group.

    *)
  2. readyDateTime : Date.t option;
    (*

    The date and time when the instance group became ready to perform tasks.

    *)
  3. endDateTime : Date.t option;
    (*

    The date and time when the instance group terminated.

    *)
}
Sourceval make : ?creationDateTime:??? -> ?readyDateTime:??? -> ?endDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of Date.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