Skip to main content

threat_model_job_tasks

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

Overview

Namethreat_model_job_tasks
TypeResource
Idaws.securityagent.threat_model_job_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
not_foundarrayThe list of task identifiers that were not found.
threat_model_job_tasksarrayThe list of threat model job tasks that were found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_threat_model_job_tasksselectregionRetrieves information about one or more tasks within a threat model job.
list_threat_model_job_tasksselectregionReturns a paginated list of task summaries for the specified threat model job.

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 tasks within a threat model job.

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