Module Values.DeactivatePipelineInputSource

Contains the parameters for DeactivatePipeline.

Sourcetype nonrec t = {
  1. pipelineId : Id.t;
    (*

    The ID of the pipeline.

    *)
  2. cancelActive : CancelActive.t option;
    (*

    Indicates whether to cancel any running objects. The default is true, which sets the state of any running objects to CANCELED. If this value is false, the pipeline is deactivated after all running objects finish.

    *)
}
Sourceval context_ : string
Sourceval make : ?cancelActive:??? -> pipelineId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of CancelActive.t | `String of Id.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