Interface CfnTriggerPropsMixin.IEventBatchingConditionProperty
Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnTriggerPropsMixin.IEventBatchingConditionProperty
Syntax (vb)
Public Interface CfnTriggerPropsMixin.IEventBatchingConditionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;
var eventBatchingConditionProperty = new EventBatchingConditionProperty {
BatchSize = 123,
BatchWindow = 123
};
Synopsis
Properties
| BatchSize | Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires. |
| BatchWindow | Window of time in seconds after which EventBridge event trigger fires. |
Properties
BatchSize
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
double? BatchSize { get; }
Property Value
Remarks
BatchWindow
Window of time in seconds after which EventBridge event trigger fires.
double? BatchWindow { get; }
Property Value
Remarks
Window starts when first event is received.