public static interface CfnDeliveryStream.SerializerProperty
Kinesis Data Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.kinesisfirehose.*; SerializerProperty serializerProperty = SerializerProperty.builder() .orcSerDe(OrcSerDeProperty.builder() .blockSizeBytes(123) .bloomFilterColumns(List.of("bloomFilterColumns")) .bloomFilterFalsePositiveProbability(123) .compression("compression") .dictionaryKeyThreshold(123) .enablePadding(false) .formatVersion("formatVersion") .paddingTolerance(123) .rowIndexStride(123) .stripeSizeBytes(123) .build()) .parquetSerDe(ParquetSerDeProperty.builder() .blockSizeBytes(123) .compression("compression") .enableDictionaryCompression(false) .maxPaddingBytes(123) .pageSizeBytes(123) .writerVersion("writerVersion") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDeliveryStream.SerializerProperty.Builder
A builder for
CfnDeliveryStream.SerializerProperty |
static class |
CfnDeliveryStream.SerializerProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.SerializerProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDeliveryStream.SerializerProperty.Builder |
builder() |
default java.lang.Object |
getOrcSerDe()
A serializer to use for converting data to the ORC format before storing it in Amazon S3.
|
default java.lang.Object |
getParquetSerDe()
A serializer to use for converting data to the Parquet format before storing it in Amazon S3.
|
default java.lang.Object getOrcSerDe()
For more information, see Apache ORC .
default java.lang.Object getParquetSerDe()
For more information, see Apache Parquet .
static CfnDeliveryStream.SerializerProperty.Builder builder()