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

AlgorithmSummary

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

Provides summary information about an algorithm.

interface AlgorithmSummary {
AlgorithmArn: string;
AlgorithmDescription?: string | null;
AlgorithmName: string;
AlgorithmStatus: AlgorithmStatus;
CreationTime: Date | number;
}

§Properties

§
AlgorithmArn: string
[src]

The Amazon Resource Name (ARN) of the algorithm.

§
AlgorithmDescription?: string | null
[src]

A brief description of the algorithm.

§
AlgorithmName: string
[src]

The name of the algorithm that is described by the summary.

§
AlgorithmStatus: AlgorithmStatus
[src]

The overall status of the algorithm.

§
CreationTime: Date | number
[src]

A timestamp that shows when the algorithm was created.