AWS Kinesis · Schema

UpdateStreamModeInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamARN object
StreamModeDetails object
View JSON Schema on GitHub

JSON Schema

kinesis-updatestreammodeinput-schema.json Raw ↑
{
  "$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 <b>on-demand</b> capacity mode and a <b>provisioned</b> capacity mode for your data streams. "
        }
      ]
    }
  }
}