AWS Kinesis · Schema

S3ReferenceDataSource

For a SQL-based Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data.

A Kinesis Data Analytics application loads reference data only once. If the data changes, you call the UpdateApplication operation to trigger reloading of data into your application.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
BucketARN object
FileKey object
View JSON Schema on GitHub

JSON Schema

kinesis-s3referencedatasource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/S3ReferenceDataSource",
  "title": "S3ReferenceDataSource",
  "type": "object",
  "properties": {
    "BucketARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the S3 bucket."
        }
      ]
    },
    "FileKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileKey"
        },
        {
          "description": "The object key name containing the reference data."
        }
      ]
    }
  },
  "description": "<p>For a SQL-based Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data.</p> <p>A Kinesis Data Analytics application loads reference data only once. If the data changes, you call the <a>UpdateApplication</a> operation to trigger reloading of data into your application. </p>"
}