Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html#cfn-glue-trigger-eventbatchingcondition-batchsize

BatchWindow

Window of time in seconds after which EventBridge event trigger fires.

double? BatchWindow { get; }
Property Value

double?

Remarks

Window starts when first event is received.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html#cfn-glue-trigger-eventbatchingcondition-batchwindow

Back to top Generated by DocFX