Struct rusoto_codepipeline::GetPipelineStateOutput[][src]

pub struct GetPipelineStateOutput {
    pub created: Option<f64>,
    pub pipeline_name: Option<String>,
    pub pipeline_version: Option<i64>,
    pub stage_states: Option<Vec<StageState>>,
    pub updated: Option<f64>,
}

Represents the output of a GetPipelineState action.

Fields

The date and time the pipeline was created, in timestamp format.

The name of the pipeline for which you want to get the state.

The version number of the pipeline.

A newly-created pipeline is always assigned a version number of 1.

A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.

The date and time the pipeline was last updated, in timestamp format.

Trait Implementations

impl Default for GetPipelineStateOutput
[src]

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

impl Debug for GetPipelineStateOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPipelineStateOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetPipelineStateOutput
[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