[][src]Struct rusoto_kinesisanalytics::InputDescription

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>,
}

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

Fields

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

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.

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

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

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.

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

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.

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.

In-application name prefix.

Trait Implementations

impl Clone for InputDescription
[src]

Performs copy-assignment from source. Read more

impl Default for InputDescription
[src]

impl PartialEq<InputDescription> for InputDescription
[src]

impl Debug for InputDescription
[src]

impl<'de> Deserialize<'de> for InputDescription
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T