Struct rusoto_codepipeline::PipelineExecution [] [src]

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>,
}

Represents information about an execution of a pipeline.

Fields

A list of ArtifactRevision objects included in a pipeline execution.

The ID of the pipeline execution.

The name of the pipeline that was executed.

The version number of the pipeline that was executed.

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 execution did not complete successfully.

Trait Implementations

impl Default for PipelineExecution
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for PipelineExecution
[src]

[src]

Formats the value using the given formatter.

impl Clone for PipelineExecution
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more