Interface CfnTriggerPropsMixin.EventBatchingConditionProperty

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

@Stability(Stable) public static interface CfnTriggerPropsMixin.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.mixins.preview.services.glue.mixins.*;
 EventBatchingConditionProperty eventBatchingConditionProperty = EventBatchingConditionProperty.builder()
         .batchSize(123)
         .batchWindow(123)
         .build();
 

See Also: