[][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: String

Input ID of the application input to be updated.

input_parallelism_update: Option<InputParallelismUpdate>

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

input_processing_configuration_update: Option<InputProcessingConfigurationUpdate>

Describes updates for an input processing configuration.

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 an Amazon Kinesis Firehose delivery stream is the streaming source to be updated, provides an updated stream ARN and IAM role ARN.

kinesis_streams_input_update: Option<KinesisStreamsInputUpdate>

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_update: Option<String>

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

Trait Implementations

impl PartialEq<InputUpdate> for InputUpdate[src]

impl Default for InputUpdate[src]

impl Clone for InputUpdate[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self