Amazon MSK · JSON Structure

Msk Api Vpc Config Structure

The configuration of the Amazon VPCs for the cluster.

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

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

Properties

SubnetIds SecurityGroupIds

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-vpc-config-structure.json",
  "name": "VpcConfig",
  "type": "object",
  "description": "\n            <p>The configuration of the Amazon VPCs for the cluster.</p>",
  "properties": {
    "SubnetIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "subnetIds"
          },
          "description": "\n            <p>The IDs of the subnets associated with the cluster.</p>"
        }
      ]
    },
    "SecurityGroupIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "securityGroupIds"
          },
          "description": "\n            <p>The IDs of the security groups associated with the cluster.</p>"
        }
      ]
    }
  },
  "required": [
    "SubnetIds"
  ]
}