Module Values.CancelStepsInfoSource

Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0.

Sourcetype nonrec t = {
  1. stepId : StepId.t option;
    (*

    The encrypted StepId of a step.

    *)
  2. status : CancelStepsRequestStatus.t option;
    (*

    The status of a CancelSteps Request. The value may be SUBMITTED or FAILED.

    *)
  3. reason : String_.t option;
    (*

    The reason for the failure if the CancelSteps request fails.

    *)
}
Sourceval make : ?stepId:??? -> ?status:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StepId.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