Amazon MQ · JSON Structure

Mq Api Configuration Revision Structure

Returns information about the specified configuration revision.

Type: object Properties: 3 Required: 2
BroadcastingMedia ProcessingMedia

ConfigurationRevision 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

Created Description Revision

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-configuration-revision-structure.json",
  "name": "ConfigurationRevision",
  "type": "object",
  "description": "Returns information about the specified configuration revision.",
  "properties": {
    "Created": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampIso8601"
        },
        {
          "xml": {
            "name": "created"
          },
          "description": "Required. The date and time of the configuration revision."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "description"
          },
          "description": "The description of the configuration revision."
        }
      ]
    },
    "Revision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "revision"
          },
          "description": "Required. The revision number of the configuration."
        }
      ]
    }
  },
  "required": [
    "Revision",
    "Created"
  ]
}