[][src]Struct rusoto_kinesisanalyticsv2::InputUpdate

pub struct InputUpdate {
    pub input_id: String,
    pub input_parallelism_update: Option<InputParallelismUpdate>,
    pub input_processing_configuration_update: Option<InputProcessingConfigurationUpdate>,
    pub input_schema_update: Option<InputSchemaUpdate>,
    pub kinesis_firehose_input_update: Option<KinesisFirehoseInputUpdate>,
    pub kinesis_streams_input_update: Option<KinesisStreamsInputUpdate>,
    pub name_prefix_update: Option<String>,
}

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

Fields

input_id: String

The input ID of the application input to be updated.

input_parallelism_update: Option<InputParallelismUpdate>

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

input_processing_configuration_update: Option<InputProcessingConfigurationUpdate>

Describes updates to an InputProcessingConfiguration.

input_schema_update: Option<InputSchemaUpdate>

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.

kinesis_firehose_input_update: Option<KinesisFirehoseInputUpdate>

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

kinesis_streams_input_update: Option<KinesisStreamsInputUpdate>

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

name_prefix_update: Option<String>

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

Trait Implementations

impl Clone for InputUpdate[src]

impl Debug for InputUpdate[src]

impl Default for InputUpdate[src]

impl PartialEq<InputUpdate> for InputUpdate[src]

impl Serialize for InputUpdate[src]

impl StructuralPartialEq for InputUpdate[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> 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.