Amazon Managed Prometheus Alert Manager Definition Description Structure

Represents the properties of an alert manager definition.

Type: object Properties: 4 Required: 4
ContainersMonitoringObservabilityPrometheus

AlertManagerDefinitionDescription is a JSON Structure definition published by Amazon Managed Service for Prometheus, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status data createdAt modifiedAt

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-managed-prometheus/refs/heads/main/json-structure/amazon-managed-prometheus-alert-manager-definition-description-structure.json",
  "name": "AlertManagerDefinitionDescription",
  "description": "Represents the properties of an alert manager definition.",
  "type": "object",
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AlertManagerDefinitionStatus"
        },
        {
          "description": "The status of alert manager definition."
        }
      ]
    },
    "data": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AlertManagerDefinitionData"
        },
        {
          "description": "The alert manager definition."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the alert manager definition was created."
        }
      ]
    },
    "modifiedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the alert manager definition was modified."
        }
      ]
    }
  },
  "required": [
    "status",
    "data",
    "createdAt",
    "modifiedAt"
  ]
}