The status of an anomaly detector run.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-schema/amazon-lookout-for-metrics-execution-status-schema.json", "title": "ExecutionStatus", "description": "The status of an anomaly detector run.", "type": "object", "properties": { "Timestamp": { "allOf": [ { "$ref": "#/components/schemas/TimestampString" }, { "description": "The run's timestamp." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/AnomalyDetectionTaskStatus" }, { "description": "The run's status." } ] }, "FailureReason": { "allOf": [ { "$ref": "#/components/schemas/AnomalyDetectionTaskStatusMessage" }, { "description": "The reason that the run failed, if applicable." } ] } } }