lists_metadatas
Creates, updates, deletes, gets or lists a lists_metadatas resource.
Overview
| Name | lists_metadatas |
| Type | Resource |
| Id | aws.frauddetector.lists_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_lists_metadata
| Name | Datatype | Description |
|---|---|---|
lists | array | The metadata of the specified list or all lists under the account. |
next_token | string | The next page token. (pattern: <code>.*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_lists_metadata | select | region | Gets the metadata of either all the lists under the account or 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_lists_metadata
Gets the metadata of either all the lists under the account or the specified list.
SELECT
lists,
next_token
FROM aws.frauddetector.lists_metadatas
WHERE region = '{{ region }}' -- required
;