Module Values_1.SelectiveExecutionConfigSource

The selective execution configuration applied to the pipeline run.

Sourcetype nonrec t = {
  1. sourcePipelineExecutionArn : Values_0.PipelineExecutionArn.t option;
    (*

    The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success. This field is required if the steps you specify for SelectedSteps depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.

    *)
  2. selectedSteps : SelectedStepList.t;
    (*

    A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourcePipelineExecutionArn:??? -> selectedSteps:SelectedStepList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.String256.t ]) list ] list | `String of Values_0.PipelineExecutionArn.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