Get Lists Metadata
| frauddetector_get_lists_metadata | R Documentation |
Gets the metadata of either all the lists under the account or the specified list¶
Description¶
Gets the metadata of either all the lists under the account or the specified list.
Usage¶
Arguments¶
nameThe name of the list.
nextTokenThe next token for the subsequent request.
maxResultsThe maximum number of objects to return for the request.
Value¶
A list with the following syntax:
list(
lists = list(
list(
name = "string",
description = "string",
variableType = "string",
createdTime = "string",
updatedTime = "string",
arn = "string"
)
),
nextToken = "string"
)