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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrigger.EventBatchingConditionProperty
static final class
An implementation forCfnTrigger.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. -
getBatchWindow
Window of time in seconds after which EventBridge event trigger fires.Window starts when first event is received.
-
builder
-