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

PutImageRequest

import type { PutImageRequest } from "https://aws-api.deno.dev/v0.3/services/ecr.ts?docs=full";
interface PutImageRequest {
imageDigest?: string | null;
imageManifest: string;
imageManifestMediaType?: string | null;
imageTag?: string | null;
registryId?: string | null;
repositoryName: string;
}

§Properties

§
imageDigest?: string | null
[src]

The image digest of the image manifest corresponding to the image.

§
imageManifest: string
[src]

The image manifest corresponding to the image to be uploaded.

§
imageManifestMediaType?: string | null
[src]

The media type of the image manifest. If you push an image manifest that does not contain the mediaType field, you must specify the imageManifestMediaType in the request.

§
imageTag?: string | null
[src]

The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.

§
registryId?: string | null
[src]

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

§
repositoryName: string
[src]

The name of the repository in which to put the image.