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

SqlApplicationConfiguration

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

Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.

interface SqlApplicationConfiguration {
Inputs?: Input[] | null;
Outputs?: Output[] | null;
ReferenceDataSources?: ReferenceDataSource[] | null;
}

§Properties

§
Inputs?: Input[] | null
[src]

The array of "Input" objects describing the input streams used by the application.

§
Outputs?: Output[] | null
[src]

The array of "Output" objects describing the destination streams used by the application.

§
ReferenceDataSources?: ReferenceDataSource[] | null
[src]

The array of "ReferenceDataSource" objects describing the reference data sources used by the application.