Struct rusoto_kinesisanalytics::InputSchemaUpdate[][src]

pub struct InputSchemaUpdate {
    pub record_column_updates: Option<Vec<RecordColumn>>,
    pub record_encoding_update: Option<String>,
    pub record_format_update: Option<RecordFormat>,
}

Describes updates for the application's input schema.

Fields

A list of RecordColumn objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream.

Specifies the encoding of the records in the streaming source. For example, UTF-8.

Specifies the format of the records on the streaming source.

Trait Implementations

impl Default for InputSchemaUpdate
[src]

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

impl Debug for InputSchemaUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for InputSchemaUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputSchemaUpdate
[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