{ "$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-update-cluster-configuration-request-schema.json", "title": "UpdateClusterConfigurationRequest", "description": "UpdateClusterConfigurationRequest schema from Amazon MSK API", "type": "object", "properties": { "ConfigurationInfo": { "allOf": [ { "$ref": "#/components/schemas/ConfigurationInfo" }, { "xml": { "name": "configurationInfo" }, "description": "\n
Represents the configuration that you want MSK to use for the brokers in a cluster.
" } ] }, "CurrentVersion": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "currentVersion" }, "description": "\nThe version of the cluster that needs to be updated.
" } ] } }, "required": [ "CurrentVersion", "ConfigurationInfo" ] }