Describe Anomaly Detector
lookoutmetrics_describe_anomaly_detector | R Documentation |
Describes a detector¶
Description¶
Describes a detector.
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¶
AnomalyDetectorArn
[required] The ARN of the detector to describe.
Value¶
A list with the following syntax:
list(
AnomalyDetectorArn = "string",
AnomalyDetectorName = "string",
AnomalyDetectorDescription = "string",
AnomalyDetectorConfig = list(
AnomalyDetectorFrequency = "P1D"|"PT1H"|"PT10M"|"PT5M"
),
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",
FailureReason = "string",
KmsKeyArn = "string",
FailureType = "ACTIVATION_FAILURE"|"BACK_TEST_ACTIVATION_FAILURE"|"DELETION_FAILURE"|"DEACTIVATION_FAILURE"
)