[][src]Struct rusoto_kinesisanalytics::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>,
}

Describes updates to a specific input configuration (identified by the InputId of an application).

Fields

Input ID of the application input to be updated.

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

Describes updates for an input processing configuration.

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.

If an Amazon Kinesis Firehose delivery stream is the streaming source to be updated, provides an updated stream ARN and IAM role ARN.

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

Name prefix for in-application streams that Amazon Kinesis Analytics creates for the specific streaming source.

Trait Implementations

impl Clone for InputUpdate
[src]

Performs copy-assignment from source. Read more

impl Default for InputUpdate
[src]

impl PartialEq<InputUpdate> for InputUpdate
[src]

impl Debug for InputUpdate
[src]

impl Serialize for InputUpdate
[src]

Auto Trait Implementations

impl Send for InputUpdate

impl Sync for InputUpdate

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> Same for T

Should always be Self

impl<T> Erased for T