Module Values.PipelineExecutionSource

Represents information about an execution of a pipeline.

Sourcetype nonrec t = {
  1. pipelineName : PipelineName.t option;
    (*

    The name of the pipeline with the specified pipeline execution.

    *)
  2. pipelineVersion : PipelineVersion.t option;
    (*

    The version number of the pipeline with the specified pipeline execution.

    *)
  3. pipelineExecutionId : PipelineExecutionId.t option;
    (*

    The ID of the pipeline execution.

    *)
  4. status : PipelineExecutionStatus.t option;
    (*

    The status of the pipeline execution. Cancelled: The pipeline’s definition was updated before the pipeline execution could be completed. InProgress: The pipeline execution is currently running. Stopped: The pipeline execution was manually stopped. For more information, see Stopped Executions. Stopping: The pipeline execution received a request to be manually stopped. Depending on the selected stop mode, the execution is either completing or abandoning in-progress actions. For more information, see Stopped Executions. Succeeded: The pipeline execution was completed successfully. Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution advanced and continued through the pipeline instead. For more information, see Superseded Executions. Failed: The pipeline execution was not completed successfully.

    *)
  5. statusSummary : PipelineExecutionStatusSummary.t option;
    (*

    A summary that contains a description of the pipeline execution status.

    *)
  6. artifactRevisions : ArtifactRevisionList.t option;
    (*

    A list of ArtifactRevision objects included in a pipeline execution.

    *)
  7. variables : ResolvedPipelineVariableList.t option;
    (*

    A list of pipeline variables used for the pipeline execution.

    *)
  8. trigger : ExecutionTrigger.t option;
  9. executionMode : ExecutionMode.t option;
    (*

    The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED.

    *)
  10. executionType : ExecutionType.t option;
    (*

    The type of the pipeline execution.

    *)
  11. rollbackMetadata : PipelineRollbackMetadata.t option;
    (*

    The metadata about the execution pertaining to stage rollback.

    *)
}
Sourceval make : ?pipelineName:??? -> ?pipelineVersion:??? -> ?pipelineExecutionId:??? -> ?status:??? -> ?statusSummary:??? -> ?artifactRevisions:??? -> ?variables:??? -> ?trigger:??? -> ?executionMode:??? -> ?executionType:??? -> ?rollbackMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PipelineVersion.t | `List of [> `Structure of (string * [> `String of ArtifactName.t | `Timestamp of Timestamp.t ]) list ] list | `String of PipelineName.t | `Structure of (string * [> `Enum of string | `String of TriggerDetail.t ]) list ]) 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