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

UploadLayerPartRequest

import type { UploadLayerPartRequest } from "https://aws-api.deno.dev/v0.3/services/ecr.ts?docs=full";
interface UploadLayerPartRequest {
layerPartBlob: Uint8Array | string;
partFirstByte: number;
partLastByte: number;
registryId?: string | null;
repositoryName: string;
uploadId: string;
}

§Properties

§
layerPartBlob: Uint8Array | string
[src]

The base64-encoded layer part payload.

§
partFirstByte: number
[src]

The position of the first byte of the layer part witin the overall image layer.

§
partLastByte: number
[src]

The position of the last byte of the layer part within the overall image layer.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry to which you are uploading layer parts. If you do not specify a registry, the default registry is assumed.

§
repositoryName: string
[src]

The name of the repository to which you are uploading layer parts.

§
uploadId: string
[src]

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