Module Values.JobFlowExecutionStatusDetailSource

Describes the status of the cluster (job flow).

Sourcetype nonrec t = {
  1. state : JobFlowExecutionState.t option;
    (*

    The state of the job flow.

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

    The creation date and time of the job flow.

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

    The start date and time of the job flow.

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

    The date and time when the job flow was ready to start running bootstrap actions.

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

    The completion date and time of the job flow.

    *)
  6. lastStateChangeReason : XmlString.t option;
    (*

    Description of the job flow last changed state.

    *)
}
Sourceval make : ?state:??? -> ?creationDateTime:??? -> ?startDateTime:??? -> ?readyDateTime:??? -> ?endDateTime:??? -> ?lastStateChangeReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of XmlString.t | `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