Class: Aws::CodePipeline::Types::PipelineContext
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::PipelineContext
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Represents information about a pipeline to a job worker.
<note markdown=“1”> PipelineContext contains ‘pipelineArn` and `pipelineExecutionId` for custom action jobs. The `pipelineArn` and `pipelineExecutionId` fields are not populated for ThirdParty action jobs.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ Types::ActionContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The context of an action to a job worker in the stage of a pipeline.
 - 
  
    
      #pipeline_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the pipeline.
 - 
  
    
      #pipeline_execution_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The execution ID of the pipeline.
 - 
  
    
      #pipeline_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the pipeline.
 - 
  
    
      #stage  ⇒ Types::StageContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The stage of the pipeline.
 
Instance Attribute Details
#action ⇒ Types::ActionContext
The context of an action to a job worker in the stage of a pipeline.
      3208 3209 3210 3211 3212 3213 3214 3215 3216  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3208 class PipelineContext < Struct.new( :pipeline_name, :stage, :action, :pipeline_arn, :pipeline_execution_id) SENSITIVE = [] include Aws::Structure end  | 
  
#pipeline_arn ⇒ String
The Amazon Resource Name (ARN) of the pipeline.
      3208 3209 3210 3211 3212 3213 3214 3215 3216  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3208 class PipelineContext < Struct.new( :pipeline_name, :stage, :action, :pipeline_arn, :pipeline_execution_id) SENSITIVE = [] include Aws::Structure end  | 
  
#pipeline_execution_id ⇒ String
The execution ID of the pipeline.
      3208 3209 3210 3211 3212 3213 3214 3215 3216  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3208 class PipelineContext < Struct.new( :pipeline_name, :stage, :action, :pipeline_arn, :pipeline_execution_id) SENSITIVE = [] include Aws::Structure end  | 
  
#pipeline_name ⇒ 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.
      3208 3209 3210 3211 3212 3213 3214 3215 3216  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3208 class PipelineContext < Struct.new( :pipeline_name, :stage, :action, :pipeline_arn, :pipeline_execution_id) SENSITIVE = [] include Aws::Structure end  | 
  
#stage ⇒ Types::StageContext
The stage of the pipeline.
      3208 3209 3210 3211 3212 3213 3214 3215 3216  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3208 class PipelineContext < Struct.new( :pipeline_name, :stage, :action, :pipeline_arn, :pipeline_execution_id) SENSITIVE = [] include Aws::Structure end  |