@Stability(value=Stable)
public static interface CfnDeliveryStream.OutputFormatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
This parameter is required if Enabled is set to true.
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.*;
OutputFormatConfigurationProperty outputFormatConfigurationProperty = OutputFormatConfigurationProperty.builder()
.serializer(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())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.OutputFormatConfigurationProperty.Builder
A builder for
CfnDeliveryStream.OutputFormatConfigurationProperty |
static class |
CfnDeliveryStream.OutputFormatConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.OutputFormatConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.OutputFormatConfigurationProperty.Builder |
builder() |
default Object |
getSerializer()
Specifies which serializer to use.
|
@Stability(value=Stable) @Nullable default Object getSerializer()
You can choose either the ORC SerDe or the Parquet SerDe. If both are non-null, the server rejects the request.
@Stability(value=Stable) static CfnDeliveryStream.OutputFormatConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.