Class: Aws::CodePipeline::Types::AcknowledgeThirdPartyJobInput

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 AcknowledgeThirdPartyJobInput data as a hash:

{
  job_id: "ThirdPartyJobId", # required
  nonce: "Nonce", # required
  client_token: "ClientToken", # required
}

Represents the input of an AcknowledgeThirdPartyJob action.

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

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.

Returns:

  • (String)


110
111
112
113
114
115
# File 'lib/aws-sdk-codepipeline/types.rb', line 110

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

#job_idString

The unique system-generated ID of the job.

Returns:

  • (String)


110
111
112
113
114
115
# File 'lib/aws-sdk-codepipeline/types.rb', line 110

class AcknowledgeThirdPartyJobInput < Struct.new(
  :job_id,
  :nonce,
  :client_token)
  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 to a GetThirdPartyJobDetails request.

Returns:

  • (String)


110
111
112
113
114
115
# File 'lib/aws-sdk-codepipeline/types.rb', line 110

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