pentest_jobs_for_pentests
Creates, updates, deletes, gets or lists a pentest_jobs_for_pentests resource.
Overview
| Name | pentest_jobs_for_pentests |
| Type | Resource |
| Id | aws.securityagent.pentest_jobs_for_pentests |
Fields
The following fields are returned by SELECT queries:
- list_pentest_jobs_for_pentest
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The date and time the pentest job was created, in UTC format. |
pentest_id | string | The unique identifier of the pentest associated with the job. |
pentest_job_id | string | The unique identifier of the pentest job. |
status | string | The current status of the pentest job. (IN_PROGRESS, STOPPING, STOPPED, FAILED, COMPLETED) |
title_ | string | The title of the pentest job. |
updated_at | string (date-time) | The date and time the pentest job was last updated, in UTC format. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_pentest_jobs_for_pentest | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_pentest_jobs_for_pentest
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
;