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

Describes the application input configuration. For more information, see Configuring Application Input.

Fields

in_app_stream_names: Option<Vec<String>>

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

input_id: Option<String>

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

input_parallelism: Option<InputParallelism>

Describes the configured parallelism (number of in-application streams mapped to the streaming 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.

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_starting_position_configuration: Option<InputStartingPositionConfiguration>

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

kinesis_firehose_input_description: Option<KinesisFirehoseInputDescription>

If an Amazon Kinesis Firehose delivery stream is configured as a streaming source, provides the delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.

kinesis_streams_input_description: Option<KinesisStreamsInputDescription>

If an Amazon Kinesis stream is configured as streaming source, provides Amazon Kinesis stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.

name_prefix: Option<String>

In-application name prefix.

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

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. 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.

Should always be Self

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