Interface CfnDeliveryStream.ISerializerProperty
The serializer that you want Firehose to use to convert data to the target format before writing it to Amazon S3.
Namespace: Amazon.CDK.AWS.KinesisFirehose
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISerializerProperty
Syntax (vb)
Public Interface ISerializerProperty
Remarks
Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisFirehose;
var serializerProperty = new SerializerProperty {
OrcSerDe = new OrcSerDeProperty {
BlockSizeBytes = 123,
BloomFilterColumns = new [] { "bloomFilterColumns" },
BloomFilterFalsePositiveProbability = 123,
Compression = "compression",
DictionaryKeyThreshold = 123,
EnablePadding = false,
FormatVersion = "formatVersion",
PaddingTolerance = 123,
RowIndexStride = 123,
StripeSizeBytes = 123
},
ParquetSerDe = new ParquetSerDeProperty {
BlockSizeBytes = 123,
Compression = "compression",
EnableDictionaryCompression = false,
MaxPaddingBytes = 123,
PageSizeBytes = 123,
WriterVersion = "writerVersion"
}
};
Synopsis
Properties
Orc |
A serializer to use for converting data to the ORC format before storing it in Amazon S3. |
Parquet |
A serializer to use for converting data to the Parquet format before storing it in Amazon S3. |
Properties
OrcSerDe
A serializer to use for converting data to the ORC format before storing it in Amazon S3.
virtual object OrcSerDe { get; }
Property Value
System.
Remarks
ParquetSerDe
A serializer to use for converting data to the Parquet format before storing it in Amazon S3.
virtual object ParquetSerDe { get; }
Property Value
System.