AWS Kinesis · Schema

KinesisStreamsInput

Identifies a Kinesis data stream as the streaming source. You provide the stream's Amazon Resource Name (ARN).

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ResourceARN object
View JSON Schema on GitHub

JSON Schema

kinesis-kinesisstreamsinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KinesisStreamsInput",
  "title": "KinesisStreamsInput",
  "type": "object",
  "required": [
    "ResourceARN"
  ],
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The ARN of the input Kinesis data stream to read."
        }
      ]
    }
  },
  "description": " Identifies a Kinesis data stream as the streaming source. You provide the stream's Amazon Resource Name (ARN)."
}