Amazon MQ · Schema

PendingLogs

The list of information about logs to be enabled for the specified broker.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Audit object
General object
View JSON Schema on GitHub

JSON Schema

mq-api-pending-logs-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mq/refs/heads/main/json-schema/mq-api-pending-logs-schema.json",
  "title": "PendingLogs",
  "description": "The list of information about logs to be enabled for the specified broker.",
  "type": "object",
  "properties": {
    "Audit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__boolean"
        },
        {
          "xml": {
            "name": "audit"
          },
          "description": "Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged."
        }
      ]
    },
    "General": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__boolean"
        },
        {
          "xml": {
            "name": "general"
          },
          "description": "Enables general logging."
        }
      ]
    }
  }
}