Amazon DevOps Guru · Schema

ServiceInsightHealth

Contains the number of open proactive and reactive insights in an analyzed Amazon Web Services service.

Anomaly DetectionDevOpsMachine LearningOperational Intelligence

Properties

Name Type Description
OpenProactiveInsights object
OpenReactiveInsights object
View JSON Schema on GitHub

JSON Schema

amazon-devops-guru-service-insight-health-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-devops-guru/refs/heads/main/json-schema/amazon-devops-guru-service-insight-health-schema.json",
  "title": "ServiceInsightHealth",
  "description": "Contains the number of open proactive and reactive insights in an analyzed Amazon Web Services service.",
  "type": "object",
  "properties": {
    "OpenProactiveInsights": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NumOpenProactiveInsights"
        },
        {
          "description": "The number of open proactive insights in the Amazon Web Services service"
        }
      ]
    },
    "OpenReactiveInsights": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NumOpenReactiveInsights"
        },
        {
          "description": "The number of open reactive insights in the Amazon Web Services service"
        }
      ]
    }
  }
}