Skip to main content

pentest_job_tasks

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

Overview

Namepentest_job_tasks
TypeResource
Idaws.securityagent.pentest_job_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
not_foundarrayThe list of task identifiers that were not found.
tasksarrayThe list of tasks that were found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_pentest_job_tasksselectregionRetrieves information about one or more tasks within a pentest job.
list_pentest_job_tasksselectregionReturns a paginated list of task summaries for the specified pentest 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 pentest job.

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