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

CreateImageVersionRequest

import type { CreateImageVersionRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateImageVersionRequest {
Aliases?: string[] | null;
BaseImage: string;
ClientToken: string;
Horovod?: boolean | null;
ImageName: string;
JobType?: JobType | null;
MLFramework?: string | null;
Processor?: Processor | null;
ProgrammingLang?: string | null;
ReleaseNotes?: string | null;
VendorGuidance?: VendorGuidance | null;
}

§Properties

§
Aliases?: string[] | null
[src]

A list of aliases created with the image version.

§
BaseImage: string
[src]

The registry path of the container image to use as the starting point for this version. The path is an Amazon Elastic Container Registry (ECR) URI in the following format:

<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or [@digest]>
§
ClientToken: string
[src]

A unique ID. If not specified, the Amazon Web Services CLI and Amazon Web Services SDKs, such as the SDK for Python (Boto3), add a unique value to the call.

§
Horovod?: boolean | null
[src]

Indicates Horovod compatibility.

§
ImageName: string
[src]

The ImageName of the Image to create a version of.

§
JobType?: JobType | null
[src]

Indicates SageMaker job type compatibility.

  • TRAINING: The image version is compatible with SageMaker training jobs.
  • INFERENCE: The image version is compatible with SageMaker inference jobs.
  • NOTEBOOK_KERNEL: The image version is compatible with SageMaker notebook kernels.
§
MLFramework?: string | null
[src]

The machine learning framework vended in the image version.

§
Processor?: Processor | null
[src]

Indicates CPU or GPU compatibility.

  • CPU: The image version is compatible with CPU.
  • GPU: The image version is compatible with GPU.
§
ProgrammingLang?: string | null
[src]

The supported programming language and its version.

§
ReleaseNotes?: string | null
[src]

The maintainer description of the image version.

§
VendorGuidance?: VendorGuidance | null
[src]

The stability of the image version, specified by the maintainer.

  • NOT_PROVIDED: The maintainers did not provide a status for image version stability.
  • STABLE: The image version is stable.
  • TO_BE_ARCHIVED: The image version is set to be archived. Custom image versions that are set to be archived are automatically archived after three months.
  • ARCHIVED: The image version is archived. Archived image versions are not searchable and are no longer actively supported.