Class: Aws::CodePipeline::Types::AcknowledgeJobInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

Note:

When making an API call, you may pass AcknowledgeJobInput data as a hash:

{
  job_id: "JobId", # required
  nonce: "Nonce", # required
}

Represents the input of an AcknowledgeJob action.

Instance Attribute Summary collapse

Instance Attribute Details

#job_idString

The unique system-generated ID of the job for which you want to confirm receipt.

Returns:

  • (String)


62
63
64
65
66
# File 'lib/aws-sdk-codepipeline/types.rb', line 62

class AcknowledgeJobInput < Struct.new(
  :job_id,
  :nonce)
  include Aws::Structure
end

#nonceString

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response of the PollForJobs request that returned this job.

Returns:

  • (String)


62
63
64
65
66
# File 'lib/aws-sdk-codepipeline/types.rb', line 62

class AcknowledgeJobInput < Struct.new(
  :job_id,
  :nonce)
  include Aws::Structure
end