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

Output

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

Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.

interface Output {
DestinationSchema: DestinationSchema;
KinesisFirehoseOutput?: KinesisFirehoseOutput | null;
KinesisStreamsOutput?: KinesisStreamsOutput | null;
LambdaOutput?: LambdaOutput | null;
Name: string;
}

§Properties

§
DestinationSchema: DestinationSchema
[src]

Describes the data format when records are written to the destination.

§
KinesisFirehoseOutput?: KinesisFirehoseOutput | null
[src]

Identifies a Kinesis Data Firehose delivery stream as the destination.

§
KinesisStreamsOutput?: KinesisStreamsOutput | null
[src]

Identifies a Kinesis data stream as the destination.

§
LambdaOutput?: LambdaOutput | null
[src]

Identifies an Amazon Lambda function as the destination.

§
Name: string
[src]

The name of the in-application stream.