Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchDeleteImageRequest

import type { BatchDeleteImageRequest } from "https://aws-api.deno.dev/v0.3/services/ecr.ts?docs=full";

Deletes specified images within a specified repository. Images are specified with either the imageTag or imageDigest.

interface BatchDeleteImageRequest {
imageIds: ImageIdentifier[];
registryId?: string | null;
repositoryName: string;
}

§Properties

§

A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry that contains the image to delete. If you do not specify a registry, the default registry is assumed.

§
repositoryName: string
[src]

The repository that contains the image to delete.