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

StartingEventBatchCondition

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

The batch condition that started the workflow run. Either the number of events in the batch size arrived, in which case the BatchSize member is non-zero, or the batch window expired, in which case the BatchWindow member is non-zero.

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

§Properties

§
BatchSize?: number | null
[src]

Number of events in the batch.

§
BatchWindow?: number | null
[src]

Duration of the batch window in seconds.