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

Layer

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

An object that represents an Amazon ECR image layer.

interface Layer {
layerAvailability?: LayerAvailability | null;
layerDigest?: string | null;
layerSize?: number | null;
mediaType?: string | null;
}

§Properties

§
layerAvailability?: LayerAvailability | null
[src]

The availability status of the image layer.

§
layerDigest?: string | null
[src]

The sha256 digest of the image layer.

§
layerSize?: number | null
[src]

The size, in bytes, of the image layer.

§
mediaType?: string | null
[src]

The media type of the layer, such as application/vnd.docker.image.rootfs.diff.tar.gzip or application/vnd.oci.image.layer.v1.tar+gzip.