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

TrainingJobSummary

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

Provides summary information about a training job.

interface TrainingJobSummary {
CreationTime: Date | number;
LastModifiedTime?: Date | number | null;
TrainingEndTime?: Date | number | null;
TrainingJobArn: string;
TrainingJobName: string;
TrainingJobStatus: TrainingJobStatus;
WarmPoolStatus?: WarmPoolStatus | null;
}

§Properties

§
CreationTime: Date | number
[src]

A timestamp that shows when the training job was created.

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

Timestamp when the training job was last modified.

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

A timestamp that shows when the training job ended. This field is set only if the training job has one of the terminal statuses (Completed, Failed, or Stopped).

§
TrainingJobArn: string
[src]

The Amazon Resource Name (ARN) of the training job.

§
TrainingJobName: string
[src]

The name of the training job that you want a summary for.

§
TrainingJobStatus: TrainingJobStatus
[src]

The status of the training job.

§
WarmPoolStatus?: WarmPoolStatus | null
[src]

The status of the warm pool associated with the training job.