[][src]Struct rusoto_kinesisanalyticsv2::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 an SQL-based Amazon Kinesis Data Analytics application.

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>

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.

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>

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

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.

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).

name_prefix: Option<String>

The in-application name prefix.

Trait Implementations

impl Clone for InputDescription[src]

impl Debug for InputDescription[src]

impl Default for InputDescription[src]

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

impl PartialEq<InputDescription> for InputDescription[src]

impl StructuralPartialEq for InputDescription[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.