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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTriggerPropsMixin.EventBatchingConditionPropertystatic final classAn implementation forCfnTriggerPropsMixin.EventBatchingConditionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBatchSize
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.- See Also:
-
getBatchWindow
Window of time in seconds after which EventBridge event trigger fires.Window starts when first event is received.
- See Also:
-
builder
-