UNPKG

@bitblit/ratchet-aws

Version:

Common tools for use with AWS browser and node

9 lines (8 loc) 383 B
import { UsedImageFinder } from '../used-image-finder.js'; import { BatchClient, JobDefinition } from '@aws-sdk/client-batch'; export declare class AwsBatchUsedImageFinder implements UsedImageFinder { private batch; constructor(batch: BatchClient); findUsedImageUris(): Promise<string[]>; listAllJobDefinitions(includeInactive?: boolean): Promise<JobDefinition[]>; }