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

Image

import type { Image } from "https://aws-api.deno.dev/v0.4/services/ecrpublic.ts?docs=full";

An object that represents an Amazon ECR image.

interface Image {
imageId?: ImageIdentifier | null;
imageManifest?: string | null;
imageManifestMediaType?: string | null;
registryId?: string | null;
repositoryName?: string | null;
}

§Properties

§
imageId?: ImageIdentifier | null
[src]

An object that contains the image tag and image digest associated with an image.

§
imageManifest?: string | null
[src]

The image manifest that's associated with the image.

§
imageManifestMediaType?: string | null
[src]

The manifest media type of the image.

§
registryId?: string | null
[src]

The Amazon Web Services account ID that's associated with the registry containing the image.

§
repositoryName?: string | null
[src]

The name of the repository that's associated with the image.