Skip to main content

data_lake_exceptions

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

Overview

Namedata_lake_exceptions
TypeResource
Idaws.securitylake.data_lake_exceptions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
exceptionstringThe underlying exception of a Security Lake exception. (pattern: <code>^[\\w-_:/.@=+]*$</code>)
regionstringThe Amazon Web Services Regions where the exception occurred. (pattern: <code>^(us(-gov)?|af|ap|ca|eu|me|sa)-(central|north|(north(?:east|west))|south|south(?:east|west)|east|west)-\d+$</code>)
remediationstringList of all remediation steps for a Security Lake exception. (pattern: <code>^[\\w-_:/.@=+]*$</code>)
timestampstring (date-time)This error can occur if you configure the wrong timestamp format, or if the subset of entries used for validation had errors or missing values.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_data_lake_exceptionsselectregionLists the Amazon Security Lake exceptions that you can use to find the source of problems and fix them.

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

Lists the Amazon Security Lake exceptions that you can use to find the source of problems and fix them.

SELECT
exception,
region,
remediation,
timestamp
FROM aws.securitylake.data_lake_exceptions
WHERE region = '{{ region }}' -- required
;