Put Job Failure Result
codepipeline_put_job_failure_result | R Documentation |
Represents the failure of a job as returned to the pipeline by a job worker¶
Description¶
Represents the failure of a job as returned to the pipeline by a job worker. Used for custom actions only.
Usage¶
codepipeline_put_job_failure_result(jobId, failureDetails)
Arguments¶
jobId |
[required] The unique system-generated ID of the job that failed.
This is the same ID returned from |
failureDetails |
[required] The details about the failure of a job. |
Value¶
An empty list.
Request syntax¶
svc$put_job_failure_result(
jobId = "string",
failureDetails = list(
type = "JobFailed"|"ConfigurationError"|"PermissionError"|"RevisionOutOfSync"|"RevisionUnavailable"|"SystemUnavailable",
message = "string",
externalExecutionId = "string"
)
)