Amazon MSK · Schema

EBSStorageInfo

Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ProvisionedThroughput object
VolumeSize object
View JSON Schema on GitHub

JSON Schema

msk-api-ebs-storage-info-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-ebs-storage-info-schema.json",
  "title": "EBSStorageInfo",
  "description": "\n            <p>Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.</p>",
  "type": "object",
  "properties": {
    "ProvisionedThroughput": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProvisionedThroughput"
        },
        {
          "xml": {
            "name": "provisionedThroughput"
          },
          "description": "\n            <p>EBS volume provisioned throughput information.</p>"
        }
      ]
    },
    "VolumeSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max16384"
        },
        {
          "xml": {
            "name": "volumeSize"
          },
          "description": "\n            <p>The size in GiB of the EBS volume for the data drive on each broker node.</p>"
        }
      ]
    }
  }
}