Interface EventBatchingCondition

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:30.029Z") @Stability(Deprecated) @Deprecated public interface EventBatchingCondition extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Represents event trigger batch condition.

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.glue.alpha.*;
 import software.amazon.awscdk.*;
 EventBatchingCondition eventBatchingCondition = EventBatchingCondition.builder()
         .batchSize(123)
         // the properties below are optional
         .batchWindow(Duration.minutes(30))
         .build();