BatchGetQueryExecution
Source:
src/AWS/Athena/BatchGetQueryExecution.ts
Runtime binding for athena:BatchGetQueryExecution.
Reads up to 50 query executions from the bound workgroup in one call.
Provide the implementation with
Effect.provide(AWS.Athena.BatchGetQueryExecutionHttp).
Inspecting Query Executions
Section titled “Inspecting Query Executions”// init — bind the operation to the workgroupconst batchGetQueryExecution = yield* AWS.Athena.BatchGetQueryExecution(workGroup);
// runtimeconst res = yield* batchGetQueryExecution({ QueryExecutionIds: ids });console.log(res.QueryExecutions?.map((qe) => qe.Status?.State));