Class: Aws::CodePipeline::Types::Job
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::Job
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Represents information about a job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #account_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the Amazon Web Services account to use when performing the job.
 - 
  
    
      #data  ⇒ Types::JobData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Other data about a job.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique system-generated ID of the job.
 - 
  
    
      #nonce  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker.
 
Instance Attribute Details
#account_id ⇒ String
The ID of the Amazon Web Services account to use when performing the job.
      2463 2464 2465 2466 2467 2468 2469 2470  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2463 class Job < Struct.new( :id, :data, :nonce, :account_id) SENSITIVE = [] include Aws::Structure end  | 
  
#data ⇒ Types::JobData
Other data about a job.
      2463 2464 2465 2466 2467 2468 2469 2470  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2463 class Job < Struct.new( :id, :data, :nonce, :account_id) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The unique system-generated ID of the job.
      2463 2464 2465 2466 2467 2468 2469 2470  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2463 class Job < Struct.new( :id, :data, :nonce, :account_id) SENSITIVE = [] include Aws::Structure end  | 
  
#nonce ⇒ String
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob request.
      2463 2464 2465 2466 2467 2468 2469 2470  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2463 class Job < Struct.new( :id, :data, :nonce, :account_id) SENSITIVE = [] include Aws::Structure end  |