{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateStreamModeInput", "title": "UpdateStreamModeInput", "type": "object", "required": [ "StreamARN", "StreamModeDetails" ], "properties": { "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/StreamARN" }, { "description": " Specifies the ARN of the data stream whose capacity mode you want to update. " } ] }, "StreamModeDetails": { "allOf": [ { "$ref": "#/components/schemas/StreamModeDetails" }, { "description": " Specifies the capacity mode to which you want to set your data stream. Currently, in Kinesis Data Streams, you can choose between an on-demand capacity mode and a provisioned capacity mode for your data streams. " } ] } } }