Skip to content

Put Third Party Job Failure Result

codepipeline_put_third_party_job_failure_result R Documentation

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

Description

Represents the failure 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_failure_result(jobId, clientToken,
  failureDetails)

Arguments

jobId

[required] The ID of the job that failed. 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.

failureDetails

[required] Represents information about failure details.

Value

An empty list.

Request syntax

svc$put_third_party_job_failure_result(
  jobId = "string",
  clientToken = "string",
  failureDetails = list(
    type = "JobFailed"|"ConfigurationError"|"PermissionError"|"RevisionOutOfSync"|"RevisionUnavailable"|"SystemUnavailable",
    message = "string",
    externalExecutionId = "string"
  )
)