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

DescribeAlgorithmOutput

import type { DescribeAlgorithmOutput } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeAlgorithmOutput {
AlgorithmArn: string;
AlgorithmDescription?: string | null;
AlgorithmName: string;
AlgorithmStatus: AlgorithmStatus;
AlgorithmStatusDetails: AlgorithmStatusDetails;
CertifyForMarketplace?: boolean | null;
CreationTime: Date | number;
InferenceSpecification?: InferenceSpecification | null;
ProductId?: string | null;
TrainingSpecification: TrainingSpecification;
ValidationSpecification?: AlgorithmValidationSpecification | null;
}

§Properties

§
AlgorithmArn: string
[src]

The Amazon Resource Name (ARN) of the algorithm.

§
AlgorithmDescription?: string | null
[src]

A brief summary about the algorithm.

§
AlgorithmName: string
[src]

The name of the algorithm being described.

§
AlgorithmStatus: AlgorithmStatus
[src]

The current status of the algorithm.

§
AlgorithmStatusDetails: AlgorithmStatusDetails
[src]

Details about the current status of the algorithm.

§
CertifyForMarketplace?: boolean | null
[src]

Whether the algorithm is certified to be listed in Amazon Web Services Marketplace.

§
CreationTime: Date | number
[src]

A timestamp specifying when the algorithm was created.

§
InferenceSpecification?: InferenceSpecification | null
[src]

Details about inference jobs that the algorithm runs.

§
ProductId?: string | null
[src]

The product identifier of the algorithm.

§
TrainingSpecification: TrainingSpecification
[src]

Details about training jobs run by this algorithm.

§
ValidationSpecification?: AlgorithmValidationSpecification | null
[src]

Details about configurations for one or more training jobs that SageMaker runs to test the algorithm.