Class: Aws::Firehose::Types::OutputFormatConfiguration

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

Overview

Note:

When making an API call, you may pass OutputFormatConfiguration data as a hash:

{
  serializer: {
    parquet_ser_de: {
      block_size_bytes: 1,
      page_size_bytes: 1,
      compression: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, SNAPPY
      enable_dictionary_compression: false,
      max_padding_bytes: 1,
      writer_version: "V1", # accepts V1, V2
    },
    orc_ser_de: {
      stripe_size_bytes: 1,
      block_size_bytes: 1,
      row_index_stride: 1,
      enable_padding: false,
      padding_tolerance: 1.0,
      compression: "NONE", # accepts NONE, ZLIB, SNAPPY
      bloom_filter_columns: ["NonEmptyStringWithoutWhitespace"],
      bloom_filter_false_positive_probability: 1.0,
      dictionary_key_threshold: 1.0,
      format_version: "V0_11", # accepts V0_11, V0_12
    },
  },
}

Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data before it writes it to Amazon S3.

Instance Attribute Summary collapse

Instance Attribute Details

#serializerTypes::Serializer

Specifies which serializer to use. You can choose either the ORC SerDe or the Parquet SerDe. If both are non-null, the server rejects the request.

Returns:



2374
2375
2376
2377
# File 'lib/aws-sdk-firehose/types.rb', line 2374

class OutputFormatConfiguration < Struct.new(
  :serializer)
  include Aws::Structure
end