Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReferenceDataSourceDescription

import type { ReferenceDataSourceDescription } from "https://aws-api.deno.dev/v0.4/services/kinesisanalyticsv2.ts?docs=full";

For a SQL-based Kinesis Data Analytics application, describes the reference data source configured for an application.

interface ReferenceDataSourceDescription {
ReferenceId: string;
ReferenceSchema?: SourceSchema | null;
S3ReferenceDataSourceDescription: S3ReferenceDataSourceDescription;
TableName: string;
}

§Properties

§
ReferenceId: string
[src]

The ID of the reference data source. This is the ID that Kinesis Data Analytics assigns when you add the reference data source to your application using the "CreateApplication" or "UpdateApplication" operation.

§
ReferenceSchema?: SourceSchema | null
[src]

Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.

§
S3ReferenceDataSourceDescription: S3ReferenceDataSourceDescription
[src]

Provides the Amazon S3 bucket name, the object key name that contains the reference data.

§
TableName: string
[src]

The in-application table name created by the specific reference data source configuration.