pub struct PipelineExecutionSummary {
pub last_update_time: Option<f64>,
pub pipeline_execution_id: Option<String>,
pub source_revisions: Option<Vec<SourceRevision>>,
pub start_time: Option<f64>,
pub status: Option<String>,
pub stop_trigger: Option<StopExecutionTrigger>,
pub trigger: Option<ExecutionTrigger>,
}
Expand description
Summary information about a pipeline execution.
Fields§
§last_update_time: Option<f64>
The date and time of the last change to the pipeline execution, in timestamp format.
pipeline_execution_id: Option<String>
The ID of the pipeline execution.
source_revisions: Option<Vec<SourceRevision>>
A list of the source artifact revisions that initiated a pipeline execution.
start_time: Option<f64>
The date and time when the pipeline execution began, in timestamp format.
status: Option<String>
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.
stop_trigger: Option<StopExecutionTrigger>
The interaction that stopped a pipeline execution.
trigger: Option<ExecutionTrigger>
The interaction or event that started a pipeline execution, such as automated change detection or a StartPipelineExecution
API call.
Trait Implementations§
Source§impl Clone for PipelineExecutionSummary
impl Clone for PipelineExecutionSummary
Source§fn clone(&self) -> PipelineExecutionSummary
fn clone(&self) -> PipelineExecutionSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more