interface EventBatchingConditionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnTrigger.EventBatchingConditionProperty |
![]() | software.amazon.awscdk.services.glue.CfnTrigger.EventBatchingConditionProperty |
![]() | aws_cdk.aws_glue.CfnTrigger.EventBatchingConditionProperty |
![]() | @aws-cdk/aws-glue » CfnTrigger » EventBatchingConditionProperty |
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 * as glue from '@aws-cdk/aws-glue';
const eventBatchingConditionProperty: glue.CfnTrigger.EventBatchingConditionProperty = {
batchSize: 123,
// the properties below are optional
batchWindow: 123,
};
Properties
Name | Type | Description |
---|---|---|
batch | number | Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires. |
batch | number | Window of time in seconds after which EventBridge event trigger fires. |
batchSize
Type:
number
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
batchWindow?
Type:
number
(optional)
Window of time in seconds after which EventBridge event trigger fires.
Window starts when first event is received.