Skip to content

ListJobTemplates

Source: src/AWS/EMRContainers/ListJobTemplates.ts

Runtime binding for emr-containers:ListJobTemplates.

Enumerates the account’s EMR on EKS job templates, optionally filtered by creation time. Account-level — no resource argument. Provide the implementation with Effect.provide(AWS.EMRContainers.ListJobTemplatesHttp).

// init — account-level binding, no resource argument
const listJobTemplates = yield* AWS.EMRContainers.ListJobTemplates();
// runtime
const { templates } = yield* listJobTemplates();
yield* Effect.log(`${templates?.length ?? 0} job templates`);