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).
Managing Partitions
Section titled “Managing Partitions”// initconst batchGetPartition = yield* AWS.Glue.BatchGetPartition(table);
// runtimeconst { Partitions } = yield* batchGetPartition({ PartitionsToGet: [{ Values: ["2026-01-01"] }, { Values: ["2026-01-02"] }],});