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

ResourceSpec

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

Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

interface ResourceSpec {
InstanceType?: AppInstanceType | null;
LifecycleConfigArn?: string | null;
SageMakerImageArn?: string | null;
SageMakerImageVersionArn?: string | null;
}

§Properties

§
InstanceType?: AppInstanceType | null
[src]

The instance type that the image version runs on.

Note: JupyterServer apps only support the system value. For KernelGateway apps, the system value is translated to ml.t3.medium. KernelGateway apps also support all other values for available instance types.

§
LifecycleConfigArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.

§
SageMakerImageArn?: string | null
[src]

The ARN of the SageMaker image that the image version belongs to.

§
SageMakerImageVersionArn?: string | null
[src]

The ARN of the image version created on the instance.