Amazon MSK · JSON Structure

Msk Api Create Cluster V2 Request Structure

CreateClusterV2Request schema from Amazon MSK API

Type: object Properties: 4 Required: 1
BroadcastingMedia ProcessingMedia

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

Properties

ClusterName Tags Provisioned Serverless

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-msk/refs/heads/main/json-structure/msk-api-create-cluster-v2-request-structure.json",
  "name": "CreateClusterV2Request",
  "type": "object",
  "description": "CreateClusterV2Request schema from Amazon MSK API",
  "properties": {
    "ClusterName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__stringMin1Max64"
        },
        {
          "xml": {
            "name": "clusterName"
          },
          "description": "\n            <p>The name of the cluster.</p>"
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__mapOf__string"
        },
        {
          "xml": {
            "name": "tags"
          },
          "description": "\n            <p>A map of tags that you want the cluster to have.</p>"
        }
      ]
    },
    "Provisioned": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProvisionedRequest"
        },
        {
          "xml": {
            "name": "provisioned"
          },
          "description": "\n            <p>Information about the provisioned cluster.</p>"
        }
      ]
    },
    "Serverless": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServerlessRequest"
        },
        {
          "xml": {
            "name": "serverless"
          },
          "description": "\n            <p>Information about the serverless cluster.</p>"
        }
      ]
    }
  },
  "required": [
    "ClusterName"
  ]
}