Class: Aws::CodePipeline::Types::AcknowledgeThirdPartyJobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::AcknowledgeThirdPartyJobInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents the input of an AcknowledgeThirdPartyJob action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
-
#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
#client_token ⇒ String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
98 99 100 101 102 103 104 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 98 class AcknowledgeThirdPartyJobInput < Struct.new( :job_id, :nonce, :client_token) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The unique system-generated ID of the job.
98 99 100 101 102 103 104 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 98 class AcknowledgeThirdPartyJobInput < Struct.new( :job_id, :nonce, :client_token) 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. Get this number from the response to a GetThirdPartyJobDetails request.
98 99 100 101 102 103 104 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 98 class AcknowledgeThirdPartyJobInput < Struct.new( :job_id, :nonce, :client_token) SENSITIVE = [] include Aws::Structure end |