Class: Aws::Firehose::Types::OutputFormatConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::OutputFormatConfiguration
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Specifies the serializer that you want Firehose to use to convert the
format of your data before it writes it to Amazon S3. This parameter
is required if Enabled
is set to true.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#serializer ⇒ Types::Serializer
Specifies which serializer to use.
Instance Attribute Details
#serializer ⇒ Types::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.
3843 3844 3845 3846 3847 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3843 class OutputFormatConfiguration < Struct.new( :serializer) SENSITIVE = [] include Aws::Structure end |