aws-cdk-lib.aws_glue.CfnTrigger.EventBatchingConditionProperty

interface EventBatchingConditionProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTrigger.EventBatchingConditionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTrigger_EventBatchingConditionProperty
Javasoftware.amazon.awscdk.services.glue.CfnTrigger.EventBatchingConditionProperty
Pythonaws_cdk.aws_glue.CfnTrigger.EventBatchingConditionProperty
TypeScript aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
const eventBatchingConditionProperty: glue.CfnTrigger.EventBatchingConditionProperty = {
  batchSize: 123,

  // the properties below are optional
  batchWindow: 123,
};

Properties

NameTypeDescription
batchSizenumberNumber of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
batchWindow?numberWindow 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.