[][src]Struct rusoto_firehose::Serializer

pub struct Serializer {
    pub orc_ser_de: Option<OrcSerDe>,
    pub parquet_ser_de: Option<ParquetSerDe>,
}

The serializer that you want Kinesis Data Firehose to use to convert data to the target format before writing it to Amazon S3. Kinesis Data Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe.

Fields

orc_ser_de: Option<OrcSerDe>

A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.

parquet_ser_de: Option<ParquetSerDe>

A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.

Trait Implementations

impl Clone for Serializer[src]

impl Debug for Serializer[src]

impl Default for Serializer[src]

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

impl PartialEq<Serializer> for Serializer[src]

impl Serialize for Serializer[src]

impl StructuralPartialEq for Serializer[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.