Skip to main content

lists_metadatas

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

Overview

Namelists_metadatas
TypeResource
Idaws.frauddetector.lists_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
listsarrayThe metadata of the specified list or all lists under the account.
next_tokenstringThe next page token. (pattern: <code>.*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_lists_metadataselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;