Skip to main content

code_review_job_tasks

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

Overview

Namecode_review_job_tasks
TypeResource
Idaws.securityagent.code_review_job_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
code_review_job_tasksarrayThe list of code review job tasks that were found.
not_foundarrayThe list of task identifiers that were not found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_code_review_job_tasksselectregionRetrieves information about one or more tasks within a code review job.
list_code_review_job_tasksselectregionReturns a paginated list of task summaries for the specified code review job, optionally filtered by step name or category.

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

Retrieves information about one or more tasks within a code review job.

SELECT
code_review_job_tasks,
not_found
FROM aws.securityagent.code_review_job_tasks
WHERE region = '{{ region }}' -- required
;