Struct rusoto_codepipeline::PipelineMetadata[][src]

pub struct PipelineMetadata {
    pub created: Option<f64>,
    pub pipeline_arn: Option<String>,
    pub updated: Option<f64>,
}

Information about a pipeline.

Fields

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

The Amazon Resource Name (ARN) of the pipeline.

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

Trait Implementations

impl Default for PipelineMetadata
[src]

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

impl Debug for PipelineMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for PipelineMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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