list_elements
Creates, updates, deletes, gets or lists a list_elements resource.
Overview
| Name | list_elements |
| Type | Resource |
| Id | aws.frauddetector.list_elements |
Fields
The following fields are returned by SELECT queries:
- get_list_elements
| Name | Datatype | Description |
|---|---|---|
element | string | The list elements. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_list_elements | select | region | Gets all the elements in the specified list. |
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
- get_list_elements
Gets all the elements in the specified list.
SELECT
element
FROM aws.frauddetector.list_elements
WHERE region = '{{ region }}' -- required
;