{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-kinesis-streams-input-schema.json", "title": "KinesisStreamsInput", "description": " Identifies a Kinesis data stream as the streaming source. You provide the stream's Amazon Resource Name (ARN).", "type": "object", "properties": { "ResourceARN": { "allOf": [ { "$ref": "#/components/schemas/ResourceARN" }, { "description": "The ARN of the input Kinesis data stream to read." } ] } }, "required": [ "ResourceARN" ] }