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

InputUpdate

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

For a SQL-based Kinesis Data Analytics application, describes updates to a specific input configuration (identified by the InputId of an application).

interface InputUpdate {
InputId: string;
InputParallelismUpdate?: InputParallelismUpdate | null;
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate | null;
InputSchemaUpdate?: InputSchemaUpdate | null;
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate | null;
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate | null;
NamePrefixUpdate?: string | null;
}

§Properties

§
InputId: string
[src]

The input ID of the application input to be updated.

§
InputParallelismUpdate?: InputParallelismUpdate | null
[src]

Describes the parallelism updates (the number of in-application streams Kinesis Data Analytics creates for the specific streaming source).

§
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate | null
[src]

Describes updates to an "InputProcessingConfiguration".

§
InputSchemaUpdate?: InputSchemaUpdate | null
[src]

Describes the data format on the streaming source, and how record elements on the streaming source map to columns of the in-application stream that is created.

§
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate | null
[src]

If a Kinesis Data Firehose delivery stream is the streaming source to be updated, provides an updated stream ARN.

§
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate | null
[src]

If a Kinesis data stream is the streaming source to be updated, provides an updated stream Amazon Resource Name (ARN).

§
NamePrefixUpdate?: string | null
[src]

The name prefix for in-application streams that Kinesis Data Analytics creates for the specific streaming source.