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

Model

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

The properties of a model as returned by the "Search" API.

interface Model {
Containers?: ContainerDefinition[] | null;
CreationTime?: Date | number | null;
EnableNetworkIsolation?: boolean | null;
ExecutionRoleArn?: string | null;
InferenceExecutionConfig?: InferenceExecutionConfig | null;
ModelArn?: string | null;
ModelName?: string | null;
PrimaryContainer?: ContainerDefinition | null;
Tags?: Tag[] | null;
VpcConfig?: VpcConfig | null;
}

§Properties

§
Containers?: ContainerDefinition[] | null
[src]

The containers in the inference pipeline.

§
CreationTime?: Date | number | null
[src]

A timestamp that indicates when the model was created.

§
EnableNetworkIsolation?: boolean | null
[src]

Isolates the model container. No inbound or outbound network calls can be made to or from the model container.

§
ExecutionRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM role that you specified for the model.

§
InferenceExecutionConfig?: InferenceExecutionConfig | null
[src]
§
ModelArn?: string | null
[src]

The Amazon Resource Name (ARN) of the model.

§
ModelName?: string | null
[src]

The name of the model.

§
PrimaryContainer?: ContainerDefinition | null
[src]
§
Tags?: Tag[] | null
[src]

A list of key-value pairs associated with the model. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.

§
VpcConfig?: VpcConfig | null
[src]