Get Variables
frauddetector_get_variables | R Documentation |
Gets all of the variables or the specific variable¶
Description¶
Gets all of the variables or the specific variable. This is a paginated
API. Providing null maxSizePerPage
results in retrieving maximum of
100 records per page. If you provide maxSizePerPage
the value must be
between 50 and 100. To get the next page result, a provide a pagination
token from GetVariablesResult
as part of your request. Null pagination
token fetches the records from the beginning.
Usage¶
Arguments¶
name
The name of the variable.
nextToken
The next page token of the get variable request.
maxResults
The max size per page determined for the get variable request.
Value¶
A list with the following syntax:
list(
variables = list(
list(
name = "string",
dataType = "STRING"|"INTEGER"|"FLOAT"|"BOOLEAN"|"DATETIME",
dataSource = "EVENT"|"MODEL_SCORE"|"EXTERNAL_MODEL_SCORE",
defaultValue = "string",
description = "string",
variableType = "string",
lastUpdatedTime = "string",
createdTime = "string",
arn = "string"
)
),
nextToken = "string"
)