data_lake_exceptions
Creates, updates, deletes, gets or lists a data_lake_exceptions resource.
Overview
| Name | data_lake_exceptions |
| Type | Resource |
| Id | aws.securitylake.data_lake_exceptions |
Fields
The following fields are returned by SELECT queries:
- list_data_lake_exceptions
| Name | Datatype | Description |
|---|---|---|
exception | string | The underlying exception of a Security Lake exception. (pattern: <code>^[\\w-_:/.@=+]*$</code>) |
region | string | The 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>) |
remediation | string | List of all remediation steps for a Security Lake exception. (pattern: <code>^[\\w-_:/.@=+]*$</code>) |
timestamp | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_data_lake_exceptions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_data_lake_exceptions
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
;