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

OutputDescription

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

For a SQL-based Kinesis Data Analytics application, describes the application output configuration, which includes the in-application stream name and the destination where the stream data is written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.

interface OutputDescription {
DestinationSchema?: DestinationSchema | null;
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription | null;
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription | null;
LambdaOutputDescription?: LambdaOutputDescription | null;
Name?: string | null;
OutputId?: string | null;
}

§Properties

§
DestinationSchema?: DestinationSchema | null
[src]

The data format used for writing data to the destination.

§
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription | null
[src]

Describes the Kinesis Data Firehose delivery stream that is configured as the destination where output is written.

§
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription | null
[src]

Describes the Kinesis data stream that is configured as the destination where output is written.

§
LambdaOutputDescription?: LambdaOutputDescription | null
[src]

Describes the Lambda function that is configured as the destination where output is written.

§
Name?: string | null
[src]

The name of the in-application stream that is configured as output.

§
OutputId?: string | null
[src]

A unique identifier for the output configuration.