KinesisStreamsOutput

When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination. You provide the stream 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-streams-output-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-streams-output-schema.json",
  "title": "KinesisStreamsOutput",
  "description": "When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination. You provide the stream Amazon Resource Name (ARN). ",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The ARN of the destination Kinesis data stream to write to."
        }
      ]
    }
  },
  "required": [
    "ResourceARN"
  ]
}