List Anomaly Detectors
| lookoutmetrics_list_anomaly_detectors | R Documentation |
Lists the detectors in the current AWS Region¶
Description¶
Lists the detectors in the current AWS Region.
Amazon Lookout for Metrics API actions are eventually consistent. If you do a read operation on a resource immediately after creating or modifying it, use retries to allow time for the write operation to complete.
Usage¶
Arguments¶
MaxResultsThe maximum number of results to return.
NextTokenIf the result of the previous request was truncated, the response includes a
NextToken. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.
Value¶
A list with the following syntax:
list(
AnomalyDetectorSummaryList = list(
list(
AnomalyDetectorArn = "string",
AnomalyDetectorName = "string",
AnomalyDetectorDescription = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModificationTime = as.POSIXct(
"2015-01-01"
),
Status = "ACTIVE"|"ACTIVATING"|"DELETING"|"FAILED"|"INACTIVE"|"LEARNING"|"BACK_TEST_ACTIVATING"|"BACK_TEST_ACTIVE"|"BACK_TEST_COMPLETE"|"DEACTIVATED"|"DEACTIVATING",
Tags = list(
"string"
)
)
),
NextToken = "string"
)