[][src]Struct rusoto_codepipeline::PipelineContext

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

Represents information about a pipeline to a job worker.

PipelineContext contains pipelineArn and pipelineExecutionId for custom action jobs. The pipelineArn and pipelineExecutionId fields are not populated for ThirdParty action jobs.

Fields

action: Option<ActionContext>

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

pipeline_arn: Option<String>

The Amazon Resource Name (ARN) of the pipeline.

pipeline_execution_id: Option<String>

The execution ID of the pipeline.

pipeline_name: Option<String>

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.

stage: Option<StageContext>

The stage of the pipeline.

Trait Implementations

impl Clone for PipelineContext[src]

impl Debug for PipelineContext[src]

impl Default for PipelineContext[src]

impl<'de> Deserialize<'de> for PipelineContext[src]

impl PartialEq<PipelineContext> for PipelineContext[src]

impl StructuralPartialEq for PipelineContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.