[][src]Struct rusoto_codepipeline::PipelineExecutionSummary

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

Summary information about a pipeline execution.

Fields

The date and time of the last change to the pipeline execution, in timestamp format.

The ID of the pipeline execution.

The date and time when the pipeline execution began, in timestamp format.

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 PipelineExecutionSummary
[src]

Performs copy-assignment from source. Read more

impl Default for PipelineExecutionSummary
[src]

impl PartialEq<PipelineExecutionSummary> for PipelineExecutionSummary
[src]

impl Debug for PipelineExecutionSummary
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T, U> Into for T where
    U: From<T>, 
[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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self