AWS Kinesis · Schema

SqlApplicationConfigurationDescription

Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
InputDescriptions object
OutputDescriptions object
ReferenceDataSourceDescriptions object
View JSON Schema on GitHub

JSON Schema

kinesis-sqlapplicationconfigurationdescription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SqlApplicationConfigurationDescription",
  "title": "SqlApplicationConfigurationDescription",
  "type": "object",
  "properties": {
    "InputDescriptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputDescriptions"
        },
        {
          "description": "The array of <a>InputDescription</a> objects describing the input streams used by the application."
        }
      ]
    },
    "OutputDescriptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutputDescriptions"
        },
        {
          "description": "The array of <a>OutputDescription</a> objects describing the destination streams used by the application."
        }
      ]
    },
    "ReferenceDataSourceDescriptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceDataSourceDescriptions"
        },
        {
          "description": "The array of <a>ReferenceDataSourceDescription</a> objects describing the reference data sources used by the application."
        }
      ]
    }
  },
  "description": "Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application."
}