Skip to content

BatchGetPartition

Source: src/AWS/Glue/BatchGetPartition.ts

Runtime binding for glue:BatchGetPartition.

Reads up to 1000 partitions of the bound Table by their partition values in one call — the bulk variant of GetPartition. Values that don’t resolve come back in UnprocessedKeys. The database/table names and catalog id are injected from the binding. Provide the implementation with Effect.provide(AWS.Glue.BatchGetPartitionHttp).

// init
const batchGetPartition = yield* AWS.Glue.BatchGetPartition(table);
// runtime
const { Partitions } = yield* batchGetPartition({
PartitionsToGet: [{ Values: ["2026-01-01"] }, { Values: ["2026-01-02"] }],
});