Module Values.InstanceFleetTimelineSource

Provides historical timestamps for the instance fleet, including the time of creation, the time it became ready to run jobs, and the time of termination. The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions.

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

    The time and date the instance fleet was created.

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

    The time and date the instance fleet was ready to run jobs.

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

    The time and date the instance fleet 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