Skip to main content

exclusions

Creates, updates, deletes, gets or lists an exclusions resource.

Overview

Nameexclusions
TypeResource
Idaws.inspector.exclusions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
exclusionsobjectInformation about the exclusions.
failed_itemsobjectExclusion details that cannot be described. An error code is provided for each failed item.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_exclusionsselectregionDescribes the exclusions that are specified by the exclusions' ARNs.
list_exclusionsselectregionList exclusions that are generated by the assessment run.

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

Describes the exclusions that are specified by the exclusions' ARNs.

SELECT
exclusions,
failed_items
FROM aws.inspector.exclusions
WHERE region = '{{ region }}' -- required
;