Acknowledge Job
codepipeline_acknowledge_job | R Documentation |
Returns information about a specified job and whether that job has been received by the job worker¶
Description¶
Returns information about a specified job and whether that job has been received by the job worker. Used for custom actions only.
Usage¶
codepipeline_acknowledge_job(jobId, nonce)
Arguments¶
jobId |
[required] The unique system-generated ID of the job for which you want to confirm receipt. |
nonce |
[required] 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 of the |
Value¶
A list with the following syntax:
list(
status = "Created"|"Queued"|"Dispatched"|"InProgress"|"TimedOut"|"Succeeded"|"Failed"
)
Request syntax¶
svc$acknowledge_job(
jobId = "string",
nonce = "string"
)