Interface CfnTrigger.EventBatchingConditionProperty

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

@Stability(Stable) public static interface CfnTrigger.EventBatchingConditionProperty extends software.amazon.jsii.JsiiSerializable
Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

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.*;
 EventBatchingConditionProperty eventBatchingConditionProperty = EventBatchingConditionProperty.builder()
         .batchSize(123)
         // the properties below are optional
         .batchWindow(123)
         .build();
 

See Also: