Struct rusoto_codepipeline::PipelineSummary[][src]

pub struct PipelineSummary {
    pub created: Option<f64>,
    pub name: Option<String>,
    pub updated: Option<f64>,
    pub version: Option<i64>,
}

Returns a summary of a pipeline.

Fields

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

The name of the pipeline.

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

The version number of the pipeline.

Trait Implementations

impl Default for PipelineSummary
[src]

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

impl Debug for PipelineSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for PipelineSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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