finding_details
Creates, updates, deletes, gets or lists a finding_details resource.
Overview
| Name | finding_details |
| Type | Resource |
| Id | aws.inspector2.finding_details |
Fields
The following fields are returned by SELECT queries:
- batch_get_finding_details
| Name | Datatype | Description |
|---|---|---|
errors | array | Error information for findings that details could not be returned for. |
finding_details | array | A finding's vulnerability details. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_finding_details | select | region | Gets vulnerability details for findings. |
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
- batch_get_finding_details
Gets vulnerability details for findings.
SELECT
errors,
finding_details
FROM aws.inspector2.finding_details
WHERE region = '{{ region }}' -- required
;