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

Image

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

A SageMaker image. A SageMaker image represents a set of container images that are derived from a common base container image. Each of these container images is represented by a SageMaker ImageVersion.

interface Image {
CreationTime: Date | number;
Description?: string | null;
DisplayName?: string | null;
FailureReason?: string | null;
ImageArn: string;
ImageName: string;
ImageStatus: ImageStatus;
LastModifiedTime: Date | number;
}

§Properties

§
CreationTime: Date | number
[src]

When the image was created.

§
Description?: string | null
[src]

The description of the image.

§
DisplayName?: string | null
[src]

The name of the image as displayed.

§
FailureReason?: string | null
[src]

When a create, update, or delete operation fails, the reason for the failure.

§
ImageArn: string
[src]

The ARN of the image.

§
ImageName: string
[src]

The name of the image.

§
ImageStatus: ImageStatus
[src]

The status of the image.

§
LastModifiedTime: Date | number
[src]

When the image was last modified.