Class: Aws::Firehose::Types::Serializer
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::Serializer
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-firehose/types.rb
 
Overview
The serializer that you want Firehose to use to convert data to the target format before writing it to Amazon S3. Firehose supports two types of serializers: the [ORC SerDe] and the [Parquet SerDe].
[1]: hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/orc/OrcSerde.html [2]: hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/parquet/serde/ParquetHiveSerDe.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #orc_ser_de  ⇒ Types::OrcSerDe 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A serializer to use for converting data to the ORC format before storing it in Amazon S3.
 - 
  
    
      #parquet_ser_de  ⇒ Types::ParquetSerDe 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A serializer to use for converting data to the Parquet format before storing it in Amazon S3.
 
Instance Attribute Details
#orc_ser_de ⇒ Types::OrcSerDe
A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see [Apache ORC].
[1]: orc.apache.org/docs/
      4549 4550 4551 4552 4553 4554  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 4549 class Serializer < Struct.new( :parquet_ser_de, :orc_ser_de) SENSITIVE = [] include Aws::Structure end  | 
  
#parquet_ser_de ⇒ Types::ParquetSerDe
A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see [Apache Parquet].
      4549 4550 4551 4552 4553 4554  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 4549 class Serializer < Struct.new( :parquet_ser_de, :orc_ser_de) SENSITIVE = [] include Aws::Structure end  |