third_party_job_failure_results
Creates, updates, deletes, gets or lists a third_party_job_failure_results resource.
Overview
| Name | third_party_job_failure_results |
| Type | Resource |
| Id | aws.codepipeline.third_party_job_failure_results |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_third_party_job_failure_result | replace | region, jobId, clientToken, failureDetails | Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_third_party_job_failure_result
Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only.
REPLACE aws.codepipeline.third_party_job_failure_results
SET
jobId = '{{ jobId }}',
clientToken = '{{ clientToken }}',
failureDetails = '{{ failureDetails }}'
WHERE
region = '{{ region }}' --required
AND jobId = '{{ jobId }}' --required
AND clientToken = '{{ clientToken }}' --required
AND failureDetails = '{{ failureDetails }}' --required;