Struct rusoto_codepipeline::PipelineExecutionSummary[][src]

pub struct PipelineExecutionSummary {
    pub last_update_time: Option<f64>,
    pub pipeline_execution_id: Option<String>,
    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 Default for PipelineExecutionSummary
[src]

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

impl Debug for PipelineExecutionSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for PipelineExecutionSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PipelineExecutionSummary
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations