interface EventBatchingCondition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.EventBatchingCondition |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#EventBatchingCondition |
Java | software.amazon.awscdk.services.glue.EventBatchingCondition |
Python | aws_cdk.aws_glue.EventBatchingCondition |
TypeScript (source) | aws-cdk-lib » aws_glue » EventBatchingCondition |
Represents event trigger batch condition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_glue as glue } from 'aws-cdk-lib';
const eventBatchingCondition: glue.EventBatchingCondition = {
batchSize: 123,
// the properties below are optional
batchWindow: cdk.Duration.minutes(30),
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | number | Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires. |
| batch | Duration | 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:
Duration
(optional, default: 900 seconds)
Window of time in seconds after which EventBridge event trigger fires.

.NET
Go
Java
Python
TypeScript (