code_review_jobs
Creates, updates, deletes, gets or lists a code_review_jobs resource.
Overview
| Name | code_review_jobs |
| Type | Resource |
| Id | aws.securityagent.code_review_jobs |
Fields
The following fields are returned by SELECT queries:
- batch_get_code_review_jobs
| Name | Datatype | Description |
|---|---|---|
code_review_jobs | array | The list of code review jobs that were found. |
not_found | array | List of code review job IDs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_code_review_jobs | select | region | Retrieves information about one or more code review jobs in an agent space. |
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
- batch_get_code_review_jobs
Retrieves information about one or more code review jobs in an agent space.
SELECT
code_review_jobs,
not_found
FROM aws.securityagent.code_review_jobs
WHERE region = '{{ region }}' -- required
;