Interface CfnDeliveryStream.ParquetSerDeProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.ParquetSerDeProperty extends software.amazon.jsii.JsiiSerializable
A serializer to use for converting data to the Parquet format before storing it in Amazon S3.

For more information, see Apache Parquet .

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.*;
 ParquetSerDeProperty parquetSerDeProperty = ParquetSerDeProperty.builder()
         .blockSizeBytes(123)
         .compression("compression")
         .enableDictionaryCompression(false)
         .maxPaddingBytes(123)
         .pageSizeBytes(123)
         .writerVersion("writerVersion")
         .build();
 

See Also: