KinesisFirehoseInput

For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source. You provide the delivery stream's Amazon Resource Name (ARN).

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
ResourceARN object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-kinesis-firehose-input-schema.json Raw ↑
{
  "$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-firehose-input-schema.json",
  "title": "KinesisFirehoseInput",
  "description": "For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source. You provide the delivery stream's Amazon Resource Name (ARN).",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the delivery stream."
        }
      ]
    }
  },
  "required": [
    "ResourceARN"
  ]
}