Amazon MQ · JSON Structure

Mq Api Sanitization Warning Structure

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

Type: object Properties: 3 Required: 1
BroadcastingMedia ProcessingMedia

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

Properties

AttributeName ElementName Reason

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-sanitization-warning-structure.json",
  "name": "SanitizationWarning",
  "type": "object",
  "description": "Returns information about the XML element or attribute that was sanitized in the configuration.",
  "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"
  ]
}