ExecutionStatus

The status of an anomaly detector run.

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

Name Type Description
Timestamp object
Status object
FailureReason object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-metrics-execution-status-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}