{ "$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-provisioned-throughput-schema.json", "title": "ProvisionedThroughput", "description": "\n

Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.

", "type": "object", "properties": { "Enabled": { "allOf": [ { "$ref": "#/components/schemas/__boolean" }, { "xml": { "name": "enabled" }, "description": "\n

Provisioned throughput is enabled or not.

" } ] }, "VolumeThroughput": { "allOf": [ { "$ref": "#/components/schemas/__integer" }, { "xml": { "name": "volumeThroughput" }, "description": "\n

Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.

" } ] } } }