[][src]Struct rusoto_codepipeline::PipelineExecution

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 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.

  • Failed: The pipeline execution was not completed successfully.

Trait Implementations

impl Clone for PipelineExecution
[src]

Performs copy-assignment from source. Read more

impl Default for PipelineExecution
[src]

impl PartialEq<PipelineExecution> for PipelineExecution
[src]

impl Debug for PipelineExecution
[src]

impl<'de> Deserialize<'de> for PipelineExecution
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T