Amazon Lookout for Metrics · JSON Structure

Amazon Lookout For Metrics Execution Status Structure

The status of an anomaly detector run.

Type: object Properties: 3
Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

ExecutionStatus is a JSON Structure definition published by Amazon Lookout for Metrics, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Timestamp Status FailureReason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-structure/amazon-lookout-for-metrics-execution-status-structure.json",
  "name": "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."
        }
      ]
    }
  }
}