Class: Aws::CodePipeline::Types::GetThirdPartyJobDetailsInput

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

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

Represents the input of a GetThirdPartyJobDetails 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)


1529
1530
1531
1532
1533
# File 'lib/aws-sdk-codepipeline/types.rb', line 1529

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

#job_idString

The unique system-generated ID used for identifying the job.

Returns:

  • (String)


1529
1530
1531
1532
1533
# File 'lib/aws-sdk-codepipeline/types.rb', line 1529

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