Amazon MQ · Schema

SanitizationWarning

Returns information about the XML element or attribute that was sanitized in the configuration.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
AttributeName object
ElementName object
Reason object
View JSON Schema on GitHub

JSON Schema

mq-api-sanitization-warning-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-sanitization-warning-schema.json",
  "title": "SanitizationWarning",
  "description": "Returns information about the XML element or attribute that was sanitized in the configuration.",
  "type": "object",
  "properties": {
    "AttributeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "attributeName"
          },
          "description": "The name of the XML attribute that has been sanitized."
        }
      ]
    },
    "ElementName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "elementName"
          },
          "description": "The name of the XML element that has been sanitized."
        }
      ]
    },
    "Reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SanitizationWarningReason"
        },
        {
          "xml": {
            "name": "reason"
          },
          "description": "Required. The reason for which the XML elements or attributes were sanitized."
        }
      ]
    }
  },
  "required": [
    "Reason"
  ]
}