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

InferenceExperimentSchedule

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

The start and end times of an inference experiment.

The maximum duration that you can set for an inference experiment is 30 days.

interface InferenceExperimentSchedule {
EndTime?: Date | number | null;
StartTime?: Date | number | null;
}

§Properties

§
EndTime?: Date | number | null
[src]

The timestamp at which the inference experiment ended or will end.

§
StartTime?: Date | number | null
[src]

The timestamp at which the inference experiment started or will start.