Struct rusoto_kinesisanalytics::InputUpdate[][src]

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 Default for InputUpdate
[src]

Returns the "default value" for a type. Read more

impl Debug for InputUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for InputUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputUpdate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for InputUpdate

impl Sync for InputUpdate