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

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 an Amazon Kinesis stream or an Amazon Kinesis 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]

Data format used for writing data to the destination.

§
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription | null
[src]

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

§
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription | null
[src]

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

§
LambdaOutputDescription?: LambdaOutputDescription | null
[src]

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

§
Name?: string | null
[src]

Name of the in-application stream configured as output.

§
OutputId?: string | null
[src]

A unique identifier for the output configuration.