[][src]Struct rusoto_kinesisanalytics::RecordColumn

pub struct RecordColumn {
    pub mapping: Option<String>,
    pub name: String,
    pub sql_type: String,
}

Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.

Also used to describe the format of the reference data source.

Fields

mapping: Option<String>

Reference to the data element in the streaming input or the reference data source. This element is required if the RecordFormatType is JSON.

name: String

Name of the column created in the in-application input stream or reference table.

sql_type: String

Type of column created in the in-application input stream or reference table.

Trait Implementations

impl Clone for RecordColumn[src]

impl Debug for RecordColumn[src]

impl Default for RecordColumn[src]

impl<'de> Deserialize<'de> for RecordColumn[src]

impl PartialEq<RecordColumn> for RecordColumn[src]

impl Serialize for RecordColumn[src]

impl StructuralPartialEq for RecordColumn[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.