Module Values.PipelineExecutionSummarySource

Summary information about a pipeline execution.

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

    The ID of the pipeline execution.

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

    The status of the pipeline execution. 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.

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

    Status summary for the pipeline.

    *)
  4. startTime : Timestamp.t option;
    (*

    The date and time when the pipeline execution began, in timestamp format.

    *)
  5. lastUpdateTime : Timestamp.t option;
    (*

    The date and time of the last change to the pipeline execution, in timestamp format.

    *)
  6. sourceRevisions : SourceRevisionList.t option;
    (*

    A list of the source artifact revisions that initiated a pipeline execution.

    *)
  7. trigger : ExecutionTrigger.t option;
    (*

    The interaction or event that started a pipeline execution, such as automated change detection or a StartPipelineExecution API call.

    *)
  8. stopTrigger : StopExecutionTrigger.t option;
    (*

    The interaction that stopped a pipeline execution.

    *)
  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;
    (*

    Type of the pipeline execution.

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

    The metadata for the stage execution to be rolled back.

    *)
}
Sourceval make : ?pipelineExecutionId:??? -> ?status:??? -> ?statusSummary:??? -> ?startTime:??? -> ?lastUpdateTime:??? -> ?sourceRevisions:??? -> ?trigger:??? -> ?stopTrigger:??? -> ?executionMode:??? -> ?executionType:??? -> ?rollbackMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ActionName.t ]) list ] list | `String of PipelineExecutionId.t | `Structure of (string * [> `Enum of string | `String of TriggerDetail.t ]) list | `Timestamp of Timestamp.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