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

AutoMLContainerDefinition

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

A list of container definitions that describe the different containers that make up an AutoML candidate. For more information, see .

interface AutoMLContainerDefinition {
Environment?: {
[key: string]: string | null | undefined;
}
| null;
Image: string;
ModelDataUrl: string;
}

§Properties

§
Environment?: {
[key: string]: string | null | undefined;
}
| null
[src]

The environment variables to set in the container. For more information, see .

§
Image: string
[src]

The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see .

§
ModelDataUrl: string
[src]

The location of the model artifacts. For more information, see .