#[non_exhaustive]
pub struct InputDescription { pub input_id: Option<String>, pub name_prefix: Option<String>, pub in_app_stream_names: Option<Vec<String>>, pub input_processing_configuration_description: Option<InputProcessingConfigurationDescription>, pub kinesis_streams_input_description: Option<KinesisStreamsInputDescription>, pub kinesis_firehose_input_description: Option<KinesisFirehoseInputDescription>, pub input_schema: Option<SourceSchema>, pub input_parallelism: Option<InputParallelism>, pub input_starting_position_configuration: Option<InputStartingPositionConfiguration>, }
Expand description

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

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
input_id: Option<String>

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.

name_prefix: Option<String>

The in-application name prefix.

in_app_stream_names: Option<Vec<String>>

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

input_processing_configuration_description: Option<InputProcessingConfigurationDescription>

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

kinesis_streams_input_description: Option<KinesisStreamsInputDescription>

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

kinesis_firehose_input_description: Option<KinesisFirehoseInputDescription>

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

input_schema: Option<SourceSchema>

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.

input_parallelism: Option<InputParallelism>

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

input_starting_position_configuration: Option<InputStartingPositionConfiguration>

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

Implementations

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.

The in-application name prefix.

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

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

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

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

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.

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

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

Creates a new builder-style object to manufacture InputDescription

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more