Interface DynamicPartitioningProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:13.420Z") @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: