Skip to main content

job_details

Creates, updates, deletes, gets or lists a job_details resource.

Overview

Namejob_details
TypeResource
Idaws.codepipeline.job_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique system-generated ID of the job. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
account_idstringThe Amazon Web Services account ID associated with the job. (pattern: <code>[0-9]{12}</code>)
dataobjectRepresents other information about a job required for a job worker to complete the job.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_job_detailsselectregionReturns information about a job. Used for custom actions only. When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.

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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information about a job. Used for custom actions only. When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.

SELECT
id,
account_id,
data
FROM aws.codepipeline.job_details
WHERE region = '{{ region }}' -- required
;