Skip to main content

pentest_jobs

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

Overview

Namepentest_jobs
TypeResource
Idaws.securityagent.pentest_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
not_foundarrayThe list of pentest job identifiers that were not found.
pentest_jobsarrayThe list of pentest jobs that were found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_pentest_jobsselectregionRetrieves information about one or more pentest 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves information about one or more pentest jobs in an agent space.

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