S3ReferenceDataSourceUpdate

For a SQL-based Kinesis Data Analytics application, describes the Amazon S3 bucket name and object key name for an in-application reference table.

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
BucketARNUpdate object
FileKeyUpdate object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-s3-reference-data-source-update-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-s3-reference-data-source-update-schema.json",
  "title": "S3ReferenceDataSourceUpdate",
  "description": "For a SQL-based Kinesis Data Analytics application, describes the Amazon S3 bucket name and object key name for an in-application reference table. ",
  "type": "object",
  "properties": {
    "BucketARNUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the S3 bucket."
        }
      ]
    },
    "FileKeyUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileKey"
        },
        {
          "description": "The object key name."
        }
      ]
    }
  }
}