AWS Kinesis · Schema

KinesisFirehoseOutput

For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination. You provide the stream Amazon Resource Name (ARN) of the delivery stream.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ResourceARN object
View JSON Schema on GitHub

JSON Schema

kinesis-kinesisfirehoseoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KinesisFirehoseOutput",
  "title": "KinesisFirehoseOutput",
  "type": "object",
  "required": [
    "ResourceARN"
  ],
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The ARN of the destination delivery stream to write to."
        }
      ]
    }
  },
  "description": "For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination. You provide the stream Amazon Resource Name (ARN) of the delivery stream. "
}