Amazon MSK · Schema

UpdateConfigurationRequest

UpdateConfigurationRequest schema from Amazon MSK API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Description object
ServerProperties object
View JSON Schema on GitHub

JSON Schema

msk-api-update-configuration-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-update-configuration-request-schema.json",
  "title": "UpdateConfigurationRequest",
  "description": "UpdateConfigurationRequest schema from Amazon MSK API",
  "type": "object",
  "properties": {
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "description"
          },
          "description": "\n            <p>The description of the configuration revision.</p>"
        }
      ]
    },
    "ServerProperties": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__blob"
        },
        {
          "xml": {
            "name": "serverProperties"
          },
          "description": "\n            <p>Contents of the <filename>server.properties</filename> file. When using the API, you must ensure that the contents of the file are base64 encoded. \n               When using the AWS Management Console, the SDK, or the AWS CLI, the contents of <filename>server.properties</filename> can be in plaintext.</p>"
        }
      ]
    }
  },
  "required": [
    "ServerProperties"
  ]
}