Amazon MSK · Schema

CreateConfigurationRequest

CreateConfigurationRequest schema from Amazon MSK API

BroadcastingMedia ProcessingMedia

Properties

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

JSON Schema

msk-api-create-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-create-configuration-request-schema.json",
  "title": "CreateConfigurationRequest",
  "description": "CreateConfigurationRequest 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.</p>"
        }
      ]
    },
    "KafkaVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "kafkaVersions"
          },
          "description": "\n            <p>The versions of Apache Kafka with which you can use this MSK configuration.</p>"
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "\n            <p>The name of the configuration.</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",
    "Name"
  ]
}