Module Values.CancelStepsInputSource

The input argument to the CancelSteps operation.

Sourcetype nonrec t = {
  1. clusterId : XmlStringMaxLen256.t;
    (*

    The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

    *)
  2. stepIds : StepIdsList.t;
    (*

    The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.

    *)
  3. stepCancellationOption : StepCancellationOption.t option;
    (*

    The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.

    *)
}
Sourceval context_ : string
Sourceval make : ?stepCancellationOption:??? -> clusterId:XmlStringMaxLen256.t -> stepIds:StepIdsList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of XmlStringMaxLen256.t ] list | `String of XmlStringMaxLen256.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