pub struct PipelineExecution {
pub artifact_revisions: Option<Vec<ArtifactRevision>>,
pub pipeline_execution_id: Option<String>,
pub pipeline_name: Option<String>,
pub pipeline_version: Option<i64>,
pub status: Option<String>,
}
Expand description
Represents information about an execution of a pipeline.
Fields§
§artifact_revisions: Option<Vec<ArtifactRevision>>
A list of ArtifactRevision
objects included in a pipeline execution.
pipeline_execution_id: Option<String>
The ID of the pipeline execution.
pipeline_name: Option<String>
The name of the pipeline with the specified pipeline execution.
pipeline_version: Option<i64>
The version number of the pipeline with the specified pipeline execution.
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.
Trait Implementations§
Source§impl Clone for PipelineExecution
impl Clone for PipelineExecution
Source§fn clone(&self) -> PipelineExecution
fn clone(&self) -> PipelineExecution
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more