PendingMaintenance

The scheduled maintenance for a runtime engine.

COBOLMainframeMigrationModernizationBatch Processing

Properties

Name Type Description
engineVersion object
schedule object
View JSON Schema on GitHub

JSON Schema

amazon-mainframe-modernization-pending-maintenance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-pending-maintenance-schema.json",
  "title": "PendingMaintenance",
  "description": "The scheduled maintenance for a runtime engine.",
  "type": "object",
  "properties": {
    "engineVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The specific runtime engine that the maintenance schedule applies to."
        }
      ]
    },
    "schedule": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaintenanceSchedule"
        },
        {
          "description": "The maintenance schedule for the runtime engine version."
        }
      ]
    }
  }
}