Skip to main content

code_review_jobs_for_code_reviews

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

Overview

Namecode_review_jobs_for_code_reviews
TypeResource
Idaws.securityagent.code_review_jobs_for_code_reviews

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
code_review_idstringThe unique identifier of the code review associated with the job.
code_review_job_idstringThe unique identifier of the code review job.
created_atstring (date-time)The date and time the code review job was created, in UTC format.
statusstringThe current status of the code review job. (IN_PROGRESS, STOPPING, STOPPED, FAILED, COMPLETED)
title_stringThe title of the code review job.
updated_atstring (date-time)The date and time the code review job was last updated, in UTC format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_code_review_jobs_for_code_reviewselectregionReturns a paginated list of code review job summaries for the specified code review configuration.

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 a paginated list of code review job summaries for the specified code review configuration.

SELECT
code_review_id,
code_review_job_id,
created_at,
status,
title_,
updated_at
FROM aws.securityagent.code_review_jobs_for_code_reviews
WHERE region = '{{ region }}' -- required
;