Struct rusoto_codepipeline::PipelineDeclaration[][src]

pub struct PipelineDeclaration {
    pub artifact_store: ArtifactStore,
    pub name: String,
    pub role_arn: String,
    pub stages: Vec<StageDeclaration>,
    pub version: Option<i64>,
}

Represents the structure of actions and stages to be performed in the pipeline.

Fields

Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline.

The name of the action to be performed.

The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.

The stage in which to perform the action.

The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.

Trait Implementations

impl Default for PipelineDeclaration
[src]

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

impl Debug for PipelineDeclaration
[src]

Formats the value using the given formatter. Read more

impl Clone for PipelineDeclaration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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