@Stability(value=Stable)
public static interface CfnDeliveryStream.SerializerProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getOrcSerDe()
A serializer to use for converting data to the ORC format before storing it in Amazon S3.
|
default Object |
getParquetSerDe()
A serializer to use for converting data to the Parquet format before storing it in Amazon S3.
|
@Stability(value=Stable) @Nullable default Object getOrcSerDe()
For more information, see Apache ORC .
@Stability(value=Stable) @Nullable default Object getParquetSerDe()
For more information, see Apache Parquet .
@Stability(value=Stable) static CfnDeliveryStream.SerializerProperty.Builder builder()
Copyright © 2022. All rights reserved.