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

RecordColumn

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

For a SQL-based Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.

Also used to describe the format of the reference data source.

interface RecordColumn {
Mapping?: string | null;
Name: string;
SqlType: string;
}

§Properties

§
Mapping?: string | null
[src]

A reference to the data element in the streaming input or the reference data source.

§
Name: string
[src]

The name of the column that is created in the in-application input stream or reference table.

§
SqlType: string
[src]

The type of column created in the in-application input stream or reference table.