public static interface CfnTrigger.EventBatchingConditionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTrigger.EventBatchingConditionProperty.Builder
A builder for
CfnTrigger.EventBatchingConditionProperty |
static class |
CfnTrigger.EventBatchingConditionProperty.Jsii$Proxy
An implementation for
CfnTrigger.EventBatchingConditionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTrigger.EventBatchingConditionProperty.Builder |
builder() |
java.lang.Number |
getBatchSize()
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
|
default java.lang.Number |
getBatchWindow()
Window of time in seconds after which EventBridge event trigger fires.
|
java.lang.Number getBatchSize()
default java.lang.Number getBatchWindow()
Window starts when first event is received.
static CfnTrigger.EventBatchingConditionProperty.Builder builder()