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/kinesisanalytics.ts?docs=full";

Describes the reference data source configured for an application.

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

§Properties

§
ReferenceId: string
[src]

ID of the reference data source. This is the ID that Amazon Kinesis Analytics assigns when you add the reference data source to your application using the AddApplicationReferenceDataSource 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 S3 bucket name, the object key name that contains the reference data. It also provides the Amazon Resource Name (ARN) of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application reference table.

§
TableName: string
[src]

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