Interface DynamicPartitioningProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DynamicPartitioningProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-23T18:58:21.361Z") @Stability(Stable) public interface DynamicPartitioningProps extends software.amazon.jsii.JsiiSerializable
Props for defining dynamic partitioning.

Example:

 Bucket bucket;
 S3Bucket s3Destination = S3Bucket.Builder.create(bucket)
         .dynamicPartitioning(DynamicPartitioningProps.builder().enabled(true).build())
         .processors(List.of(RecordDeAggregationProcessor.delimited("####")))
         .build();
 

See Also: