Class: Aws::Firehose::Types::Serializer

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#orc_ser_deTypes::OrcSerDe

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

Returns:



3782
3783
3784
3785
3786
3787
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3782

class Serializer < Struct.new(
  :parquet_ser_de,
  :orc_ser_de)
  SENSITIVE = []
  include Aws::Structure
end

#parquet_ser_deTypes::ParquetSerDe

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

Returns:



3782
3783
3784
3785
3786
3787
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3782

class Serializer < Struct.new(
  :parquet_ser_de,
  :orc_ser_de)
  SENSITIVE = []
  include Aws::Structure
end