Amazon MQ · JSON Structure

Mq Api Weekly Start Time Structure

The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.

Type: object Properties: 3 Required: 2
BroadcastingMedia ProcessingMedia

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

Properties

DayOfWeek TimeOfDay TimeZone

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-mq/refs/heads/main/json-structure/mq-api-weekly-start-time-structure.json",
  "name": "WeeklyStartTime",
  "type": "object",
  "description": "The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.",
  "properties": {
    "DayOfWeek": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DayOfWeek"
        },
        {
          "xml": {
            "name": "dayOfWeek"
          },
          "description": "Required. The day of the week."
        }
      ]
    },
    "TimeOfDay": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "timeOfDay"
          },
          "description": "Required. The time, in 24-hour format."
        }
      ]
    },
    "TimeZone": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "timeZone"
          },
          "description": "The time zone, UTC by default, in either the Country/City format, or the UTC offset format."
        }
      ]
    }
  },
  "required": [
    "TimeOfDay",
    "DayOfWeek"
  ]
}