discovered_endpoints
Creates, updates, deletes, gets or lists a discovered_endpoints resource.
Overview
| Name | discovered_endpoints |
| Type | Resource |
| Id | aws.securityagent.discovered_endpoints |
Fields
The following fields are returned by SELECT queries:
- list_discovered_endpoints
| Name | Datatype | Description |
|---|---|---|
agent_space_id | string | The unique identifier of the agent space associated with the discovered endpoint. |
description | string | A description of the discovered endpoint. |
evidence | string | The evidence that led to the discovery of the endpoint. |
operation | string | The HTTP operation associated with the discovered endpoint. |
pentest_job_id | string | The unique identifier of the pentest job that discovered the endpoint. |
task_id | string | The unique identifier of the task that discovered the endpoint. |
uri | string | The URI of the discovered endpoint. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_discovered_endpoints | select | region | Returns a paginated list of endpoints discovered during a pentest job execution. |
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_discovered_endpoints
Returns a paginated list of endpoints discovered during a pentest job execution.
SELECT
agent_space_id,
description,
evidence,
operation,
pentest_job_id,
task_id,
uri
FROM aws.securityagent.discovered_endpoints
WHERE region = '{{ region }}' -- required
;