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

CompleteLayerUploadRequest

import type { CompleteLayerUploadRequest } from "https://aws-api.deno.dev/v0.3/services/ecr.ts?docs=full";
interface CompleteLayerUploadRequest {
layerDigests: string[];
registryId?: string | null;
repositoryName: string;
uploadId: string;
}

§Properties

§
layerDigests: string[]
[src]

The sha256 digest of the image layer.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry to which to upload layers. If you do not specify a registry, the default registry is assumed.

§
repositoryName: string
[src]

The name of the repository to associate with the image layer.

§
uploadId: string
[src]

The upload ID from a previous "InitiateLayerUpload" operation to associate with the image layer.