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

ImageIdentifier

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

An object with identifying information for an image in an Amazon ECR repository.

interface ImageIdentifier {
imageDigest?: string | null;
imageTag?: string | null;
}

§Properties

§
imageDigest?: string | null
[src]

The sha256 digest of the image manifest.

§
imageTag?: string | null
[src]

The tag used for the image.