Interface CfnDeliveryStream.OrcSerDeProperty

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

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

For more information, see Apache ORC .

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.*;
 OrcSerDeProperty orcSerDeProperty = 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();
 

See Also: