Struct rusoto_codepipeline::PipelineContext[][src]

pub struct PipelineContext {
    pub action: Option<ActionContext>,
    pub pipeline_name: Option<String>,
    pub stage: Option<StageContext>,
}

Represents information about a pipeline to a job worker.

Fields

The context of an action to a job worker within the stage of a pipeline.

The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.

The stage of the pipeline.

Trait Implementations

impl Default for PipelineContext
[src]

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

impl Debug for PipelineContext
[src]

Formats the value using the given formatter. Read more

impl Clone for PipelineContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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