Module Values.StopPipelineExecutionOutputSource

Stops the specified pipeline execution. You choose to either stop the pipeline execution by completing in-progress actions without starting subsequent actions, or by abandoning in-progress actions. While completing or abandoning in-progress actions, the pipeline execution is in a Stopping state. After all in-progress actions are completed or abandoned, the pipeline execution is in a Stopped state.

Sourcetype nonrec t = {
  1. pipelineExecutionId : PipelineExecutionId.t option;
    (*

    The unique system-generated ID of the pipeline execution that was stopped.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `DuplicatedStopRequestException of DuplicatedStopRequestException.t
  3. | `PipelineExecutionNotStoppableException of PipelineExecutionNotStoppableException.t
  4. | `PipelineNotFoundException of PipelineNotFoundException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pipelineExecutionId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `DuplicatedStopRequestException of DuplicatedStopRequestException.t | `PipelineExecutionNotStoppableException of PipelineExecutionNotStoppableException.t | `PipelineNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `DuplicatedStopRequestException of DuplicatedStopRequestException.t | `PipelineExecutionNotStoppableException of PipelineExecutionNotStoppableException.t | `PipelineNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PipelineExecutionId.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