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

ModelDeployConfig

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

Specifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.

interface ModelDeployConfig {
AutoGenerateEndpointName?: boolean | null;
EndpointName?: string | null;
}

§Properties

§
AutoGenerateEndpointName?: boolean | null
[src]

Set to True to automatically generate an endpoint name for a one-click Autopilot model deployment; set to False otherwise. The default value is False.

Note: If you set AutoGenerateEndpointName to True, do not specify the EndpointName; otherwise a 400 error is thrown.

§
EndpointName?: string | null
[src]

Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.

Note: Specify the EndpointName if and only if you set AutoGenerateEndpointName to False; otherwise a 400 error is thrown.