Skip to content

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.

Timestamp

The timestamp of the anomaly detection job.

MaxResults

The number of items to return in the response.

NextToken

Specify 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"
)

Request syntax

svc$describe_anomaly_detection_executions(
  AnomalyDetectorArn = "string",
  Timestamp = "string",
  MaxResults = 123,
  NextToken = "string"
)