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

DeployedImage

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

Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this "ProductionVariant".

If you used the registry/repository[:tag] form to specify the image path of the primary container when you created the model hosted in this ProductionVariant, the path resolves to a path of the form registry/repository[@digest]. A digest is a hash value that identifies a specific version of an image. For information about Amazon ECR paths, see Pulling an Image in the Amazon ECR User Guide.

interface DeployedImage {
ResolutionTime?: Date | number | null;
ResolvedImage?: string | null;
SpecifiedImage?: string | null;
}

§Properties

§
ResolutionTime?: Date | number | null
[src]

The date and time when the image path for the model resolved to the ResolvedImage

§
ResolvedImage?: string | null
[src]

The specific digest path of the image hosted in this ProductionVariant.

§
SpecifiedImage?: string | null
[src]

The image path you specified when you created the model.