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).
Job Templates
Section titled “Job Templates”// init — account-level binding, no resource argumentconst listJobTemplates = yield* AWS.EMRContainers.ListJobTemplates();
// runtimeconst { templates } = yield* listJobTemplates();yield* Effect.log(`${templates?.length ?? 0} job templates`);