Struct rusoto_codepipeline::StageDeclaration[][src]

pub struct StageDeclaration {
    pub actions: Vec<ActionDeclaration>,
    pub blockers: Option<Vec<BlockerDeclaration>>,
    pub name: String,
}

Represents information about a stage and its definition.

Fields

The actions included in a stage.

Reserved for future use.

The name of the stage.

Trait Implementations

impl Default for StageDeclaration
[src]

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

impl Debug for StageDeclaration
[src]

Formats the value using the given formatter. Read more

impl Clone for StageDeclaration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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