Struct rusoto_codepipeline::PipelineExecution
[−]
[src]
pub struct PipelineExecution { pub artifact_revisions: Option<ArtifactRevisionList>, pub pipeline_execution_id: Option<PipelineExecutionId>, pub pipeline_name: Option<PipelineName>, pub pipeline_version: Option<PipelineVersion>, pub status: Option<PipelineExecutionStatus>, }
Represents information about an execution of a pipeline.
Fields
artifact_revisions: Option<ArtifactRevisionList>
A list of ArtifactRevision objects included in a pipeline execution.
pipeline_execution_id: Option<PipelineExecutionId>
The ID of the pipeline execution.
pipeline_name: Option<PipelineName>
The name of the pipeline that was executed.
pipeline_version: Option<PipelineVersion>
The version number of the pipeline that was executed.
status: Option<PipelineExecutionStatus>
The status of the pipeline execution.
-
InProgress: The pipeline execution is currently running.
-
Succeeded: The pipeline execution completed successfully.
-
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution caught up and continued through the pipeline instead.
-
Failed: The pipeline did not complete successfully.
Trait Implementations
impl Default for PipelineExecution
[src]
fn default() -> PipelineExecution
Returns the "default value" for a type. Read more
impl Debug for PipelineExecution
[src]
impl Clone for PipelineExecution
[src]
fn clone(&self) -> PipelineExecution
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more