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

CreateEvaluationInput

import type { CreateEvaluationInput } from "https://aws-api.deno.dev/v0.4/services/machinelearning.ts?docs=full";
interface CreateEvaluationInput {
EvaluationDataSourceId: string;
EvaluationId: string;
EvaluationName?: string | null;
MLModelId: string;
}

§Properties

§
EvaluationDataSourceId: string
[src]

The ID of the DataSource for the evaluation. The schema of the DataSource must match the schema used to create the MLModel.

§
EvaluationId: string
[src]

A user-supplied ID that uniquely identifies the Evaluation.

§
EvaluationName?: string | null
[src]

A user-supplied name or description of the Evaluation.

§
MLModelId: string
[src]

The ID of the MLModel to evaluate.

The schema used in creating the MLModel must match the schema of the DataSource used in the Evaluation.