Skip to content

Put Third Party Job Success Result

codepipeline_put_third_party_job_success_result R Documentation

Represents the success of a third party job as returned to the pipeline by a job worker

Description

Represents the success of a third party job as returned to the pipeline by a job worker. Used for partner actions only.

Usage

codepipeline_put_third_party_job_success_result(jobId, clientToken,
  currentRevision, continuationToken, executionDetails)

Arguments

jobId

[required] The ID of the job that successfully completed. This is the same ID returned from poll_for_third_party_jobs.

clientToken

[required] 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.

currentRevision

Represents information about a current revision.

continuationToken

A token generated by a job worker, such as a CodeDeploy deployment ID, that a successful job provides to identify a partner action in progress. Future jobs use this token to identify the running instance of the action. It can be reused to return more information about the progress of the partner action. When the action is complete, no continuation token should be supplied.

executionDetails

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

Value

An empty list.

Request syntax

svc$put_third_party_job_success_result(
  jobId = "string",
  clientToken = "string",
  currentRevision = list(
    revision = "string",
    changeIdentifier = "string",
    created = as.POSIXct(
      "2015-01-01"
    ),
    revisionSummary = "string"
  ),
  continuationToken = "string",
  executionDetails = list(
    summary = "string",
    externalExecutionId = "string",
    percentComplete = 123
  )
)