code_review_jobs_for_code_reviews
Creates, updates, deletes, gets or lists a code_review_jobs_for_code_reviews resource.
Overview
| Name | code_review_jobs_for_code_reviews |
| Type | Resource |
| Id | aws.securityagent.code_review_jobs_for_code_reviews |
Fields
The following fields are returned by SELECT queries:
- list_code_review_jobs_for_code_review
| Name | Datatype | Description |
|---|---|---|
code_review_id | string | The unique identifier of the code review associated with the job. |
code_review_job_id | string | The unique identifier of the code review job. |
created_at | string (date-time) | The date and time the code review job was created, in UTC format. |
status | string | The current status of the code review job. (IN_PROGRESS, STOPPING, STOPPED, FAILED, COMPLETED) |
title_ | string | The title of the code review job. |
updated_at | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_code_review_jobs_for_code_review | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_code_review_jobs_for_code_review
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
;