Class: Aws::CodePipeline::Types::JobDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::JobDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents information about the details of a job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID associated with the job.
-
#data ⇒ Types::JobData
Represents other information about a job required for a job worker to complete the job.
-
#id ⇒ String
The unique system-generated ID of the job.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID associated with the job.
2575 2576 2577 2578 2579 2580 2581 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2575 class JobDetails < Struct.new( :id, :data, :account_id) SENSITIVE = [] include Aws::Structure end |
#data ⇒ Types::JobData
Represents other information about a job required for a job worker to complete the job.
2575 2576 2577 2578 2579 2580 2581 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2575 class JobDetails < Struct.new( :id, :data, :account_id) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique system-generated ID of the job.
2575 2576 2577 2578 2579 2580 2581 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2575 class JobDetails < Struct.new( :id, :data, :account_id) SENSITIVE = [] include Aws::Structure end |