Class: Aws::CodePipeline::Types::ThirdPartyJobDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ThirdPartyJobDetails
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
The details of a job sent in response to a GetThirdPartyJobDetails
request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ Types::ThirdPartyJobData
The data to be returned by the third party job worker.
-
#id ⇒ String
The identifier used to identify the job details in CodePipeline.
-
#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
#data ⇒ Types::ThirdPartyJobData
The data to be returned by the third party job worker.
5452 5453 5454 5455 5456 5457 5458 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5452 class ThirdPartyJobDetails < Struct.new( :id, :data, :nonce) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The identifier used to identify the job details in CodePipeline.
5452 5453 5454 5455 5456 5457 5458 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5452 class ThirdPartyJobDetails < Struct.new( :id, :data, :nonce) 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 AcknowledgeThirdPartyJob request.
5452 5453 5454 5455 5456 5457 5458 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5452 class ThirdPartyJobDetails < Struct.new( :id, :data, :nonce) SENSITIVE = [] include Aws::Structure end |