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

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]

Reference to the data element in the streaming input or the reference data source. This element is required if the RecordFormatType is JSON.

§
Name: string
[src]

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

§
SqlType: string
[src]

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