Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EventBatchingCondition

import type { EventBatchingCondition } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

interface EventBatchingCondition {
BatchSize: number;
BatchWindow?: number | null;
}

§Properties

§
BatchSize: number
[src]

Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

§
BatchWindow?: number | null
[src]

Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.