Skip to main content

pentest_jobs_for_pentests

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

Overview

Namepentest_jobs_for_pentests
TypeResource
Idaws.securityagent.pentest_jobs_for_pentests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The date and time the pentest job was created, in UTC format.
pentest_idstringThe unique identifier of the pentest associated with the job.
pentest_job_idstringThe unique identifier of the pentest job.
statusstringThe current status of the pentest job. (IN_PROGRESS, STOPPING, STOPPED, FAILED, COMPLETED)
title_stringThe title of the pentest job.
updated_atstring (date-time)The date and time the pentest job was last updated, in UTC format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_pentest_jobs_for_pentestselectregionReturns a paginated list of pentest job summaries for the specified pentest 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.

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

SELECT examples

Returns a paginated list of pentest job summaries for the specified pentest configuration.

SELECT
created_at,
pentest_id,
pentest_job_id,
status,
title_,
updated_at
FROM aws.securityagent.pentest_jobs_for_pentests
WHERE region = '{{ region }}' -- required
;