Interface CfnDeliveryStream.OutputFormatConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.OutputFormatConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.OutputFormatConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the serializer that you want Kinesis Data 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.

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();