Skip to main content

discovered_endpoints

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

Overview

Namediscovered_endpoints
TypeResource
Idaws.securityagent.discovered_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_space_idstringThe unique identifier of the agent space associated with the discovered endpoint.
descriptionstringA description of the discovered endpoint.
evidencestringThe evidence that led to the discovery of the endpoint.
operationstringThe HTTP operation associated with the discovered endpoint.
pentest_job_idstringThe unique identifier of the pentest job that discovered the endpoint.
task_idstringThe unique identifier of the task that discovered the endpoint.
uristringThe URI of the discovered endpoint.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_discovered_endpointsselectregionReturns 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.

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

SELECT examples

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
;