Skip to main content

threat_model_jobs

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

Overview

Namethreat_model_jobs
TypeResource
Idaws.securityagent.threat_model_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
not_foundarrayList of threat model job IDs.
threat_model_jobsarrayThe list of threat model jobs that were found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_threat_model_jobsselectregionRetrieves information about one or more threat model jobs in an agent space.
list_threat_model_jobsselectregionReturns a paginated list of threat model job summaries for the specified threat model.

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 threat model jobs in an agent space.

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