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]

[src]

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

impl Debug for InputSchemaUpdate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InputSchemaUpdate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations