Struct rusoto_kinesisanalytics::SourceSchema[][src]

pub struct SourceSchema {
    pub record_columns: Vec<RecordColumn>,
    pub record_encoding: Option<String>,
    pub record_format: RecordFormat,
}

Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.

Fields

A list of RecordColumn objects.

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 SourceSchema
[src]

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

impl Debug for SourceSchema
[src]

Formats the value using the given formatter. Read more

impl Clone for SourceSchema
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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