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

EvaluatedExternalModel

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

The details of the external (Amazon Sagemaker) model evaluated for generating predictions.

interface EvaluatedExternalModel {
inputVariables?: {
[key: string]: string | null | undefined;
}
| null;
modelEndpoint?: string | null;
outputVariables?: {
[key: string]: string | null | undefined;
}
| null;
useEventVariables?: boolean | null;
}

§Properties

§
inputVariables?: {
[key: string]: string | null | undefined;
}
| null
[src]

Input variables use for generating predictions.

§
modelEndpoint?: string | null
[src]

The endpoint of the external (Amazon Sagemaker) model.

§
outputVariables?: {
[key: string]: string | null | undefined;
}
| null
[src]

Output variables.

§
useEventVariables?: boolean | null
[src]

Indicates whether event variables were used to generate predictions.