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

InputDescription

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

Describes the application input configuration for a SQL-based Kinesis Data Analytics application.

interface InputDescription {
InAppStreamNames?: string[] | null;
InputId?: string | null;
InputParallelism?: InputParallelism | null;
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription | null;
InputSchema?: SourceSchema | null;
InputStartingPositionConfiguration?: InputStartingPositionConfiguration | null;
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription | null;
KinesisStreamsInputDescription?: KinesisStreamsInputDescription | null;
NamePrefix?: string | null;
}

§Properties

§
InAppStreamNames?: string[] | null
[src]

Returns the in-application stream names that are mapped to the stream source.

§
InputId?: string | null
[src]

The input ID that is associated with the application input. This is the ID that Kinesis Data Analytics assigns to each input configuration that you add to your application.

§
InputParallelism?: InputParallelism | null
[src]

Describes the configured parallelism (number of in-application streams mapped to the streaming source).

§
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription | null
[src]

The description of the preprocessor that executes on records in this input before the application's code is run.

§
InputSchema?: SourceSchema | null
[src]

Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.

§
InputStartingPositionConfiguration?: InputStartingPositionConfiguration | null
[src]

The point at which the application is configured to read from the input stream.

§
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription | null
[src]

If a Kinesis Data Firehose delivery stream is configured as a streaming source, provides the delivery stream's ARN.

§
KinesisStreamsInputDescription?: KinesisStreamsInputDescription | null
[src]

If a Kinesis data stream is configured as a streaming source, provides the Kinesis data stream's Amazon Resource Name (ARN).

§
NamePrefix?: string | null
[src]

The in-application name prefix.