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

ModelPackageSummary

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

Provides summary information about a model package.

interface ModelPackageSummary {
CreationTime: Date | number;
ModelApprovalStatus?: ModelApprovalStatus | null;
ModelPackageArn: string;
ModelPackageDescription?: string | null;
ModelPackageGroupName?: string | null;
ModelPackageName: string;
ModelPackageStatus: ModelPackageStatus;
ModelPackageVersion?: number | null;
}

§Properties

§
CreationTime: Date | number
[src]

A timestamp that shows when the model package was created.

§
ModelApprovalStatus?: ModelApprovalStatus | null
[src]

The approval status of the model. This can be one of the following values.

  • APPROVED - The model is approved
  • REJECTED - The model is rejected.
  • PENDING_MANUAL_APPROVAL - The model is waiting for manual approval.
§
ModelPackageArn: string
[src]

The Amazon Resource Name (ARN) of the model package.

§
ModelPackageDescription?: string | null
[src]

A brief description of the model package.

§
ModelPackageGroupName?: string | null
[src]

If the model package is a versioned model, the model group that the versioned model belongs to.

§
ModelPackageName: string
[src]

The name of the model package.

§
ModelPackageStatus: ModelPackageStatus
[src]

The overall status of the model package.

§
ModelPackageVersion?: number | null
[src]

If the model package is a versioned model, the version of the model.