Describe Anomaly Detection Executions
| lookoutmetrics_describe_anomaly_detection_executions | R Documentation |
Returns information about the status of the specified anomaly detection jobs¶
Description¶
Returns information about the status of the specified anomaly detection jobs.
Usage¶
lookoutmetrics_describe_anomaly_detection_executions(AnomalyDetectorArn,
Timestamp, MaxResults, NextToken)
Arguments¶
AnomalyDetectorArn[required] The Amazon Resource Name (ARN) of the anomaly detector.
TimestampThe timestamp of the anomaly detection job.
MaxResultsThe number of items to return in the response.
NextTokenSpecify the pagination token that's returned by a previous request to retrieve the next page of results.
Value¶
A list with the following syntax:
list(
ExecutionList = list(
list(
Timestamp = "string",
Status = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE",
FailureReason = "string"
)
),
NextToken = "string"
)