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

AdditionalInferenceSpecificationDefinition

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

A structure of additional Inference Specification. Additional Inference Specification specifies details about inference jobs that can be run with models based on this model package

interface AdditionalInferenceSpecificationDefinition {
Description?: string | null;
Name: string;
SupportedContentTypes?: string[] | null;
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | null;
SupportedResponseMIMETypes?: string[] | null;
SupportedTransformInstanceTypes?: TransformInstanceType[] | null;
}

§Properties

§

The Amazon ECR registry path of the Docker image that contains the inference code.

§
Description?: string | null
[src]

A description of the additional Inference specification

§
Name: string
[src]

A unique name to identify the additional inference specification. The name must be unique within the list of your additional inference specifications for a particular model package.

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

The supported MIME types for the input data.

§
SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[] | null
[src]

A list of the instance types that are used to generate inferences in real-time.

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

The supported MIME types for the output data.

§
SupportedTransformInstanceTypes?: TransformInstanceType[] | null
[src]

A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.