Amazon MediaConnect · JSON Structure

Mediaconnect Api Add Maintenance Structure

Create maintenance setting for a flow

Type: object Properties: 2 Required: 2
BroadcastingLive VideoMediaMedia Transport

AddMaintenance is a JSON Structure definition published by Amazon MediaConnect, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

MaintenanceDay MaintenanceStartHour

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-mediaconnect/refs/heads/main/json-structure/mediaconnect-api-add-maintenance-structure.json",
  "name": "AddMaintenance",
  "type": "object",
  "description": "Create maintenance setting for a flow",
  "properties": {
    "MaintenanceDay": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaintenanceDay"
        },
        {
          "xml": {
            "name": "maintenanceDay"
          },
          "description": "A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday."
        }
      ]
    },
    "MaintenanceStartHour": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "maintenanceStartHour"
          },
          "description": "UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00."
        }
      ]
    }
  },
  "required": [
    "MaintenanceDay",
    "MaintenanceStartHour"
  ]
}