Interface CfnDeliveryStream.DynamicPartitioningConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStream.DynamicPartitioningConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The DynamicPartitioningConfiguration property type specifies the configuration of the dynamic partitioning mechanism that creates targeted data sets from the streaming data by partitioning it based on partition keys.

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.*;
 DynamicPartitioningConfigurationProperty dynamicPartitioningConfigurationProperty = DynamicPartitioningConfigurationProperty.builder()
         .enabled(false)
         .retryOptions(RetryOptionsProperty.builder()
                 .durationInSeconds(123)
                 .build())
         .build();