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

AppSpecification

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

Configuration to run a processing job in a specified container image.

interface AppSpecification {
ContainerArguments?: string[] | null;
ContainerEntrypoint?: string[] | null;
ImageUri: string;
}

§Properties

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

The arguments for a container used to run a processing job.

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

The entrypoint for a container used to run a processing job.

§
ImageUri: string
[src]

The container image to be run by the processing job.