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

Describes application 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 an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.

For limits on how many destinations an application can write and other limitations, see Limits.

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. For more information, see Configuring Application Output.

§
KinesisFirehoseOutput?: KinesisFirehoseOutput | null
[src]

Identifies an Amazon Kinesis Firehose delivery stream as the destination.

§
KinesisStreamsOutput?: KinesisStreamsOutput | null
[src]

Identifies an Amazon Kinesis stream as the destination.

§
LambdaOutput?: LambdaOutput | null
[src]

Identifies an AWS Lambda function as the destination.

§
Name: string
[src]

Name of the in-application stream.