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

EndpointInput

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

Input object for the endpoint

interface EndpointInput {
EndpointName: string;
EndTimeOffset?: string | null;
FeaturesAttribute?: string | null;
InferenceAttribute?: string | null;
LocalPath: string;
ProbabilityAttribute?: string | null;
ProbabilityThresholdAttribute?: number | null;
S3DataDistributionType?: ProcessingS3DataDistributionType | null;
S3InputMode?: ProcessingS3InputMode | null;
StartTimeOffset?: string | null;
}

§Properties

§
EndpointName: string
[src]

An endpoint in customer's account which has enabled DataCaptureConfig enabled.

§
EndTimeOffset?: string | null
[src]

If specified, monitoring jobs substract this time from the end time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.

§
FeaturesAttribute?: string | null
[src]

The attributes of the input data that are the input features.

§
InferenceAttribute?: string | null
[src]

The attribute of the input data that represents the ground truth label.

§
LocalPath: string
[src]

Path to the filesystem where the endpoint data is available to the container.

§
ProbabilityAttribute?: string | null
[src]

In a classification problem, the attribute that represents the class probability.

§
ProbabilityThresholdAttribute?: number | null
[src]

The threshold for the class probability to be evaluated as a positive result.

§
S3DataDistributionType?: ProcessingS3DataDistributionType | null
[src]

Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defaults to FullyReplicated

§
S3InputMode?: ProcessingS3InputMode | null
[src]

Whether the Pipe or File is used as the input mode for transferring data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.

§
StartTimeOffset?: string | null
[src]

If specified, monitoring jobs substract this time from the start time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.