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

ArtifactSummary

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

Lists a summary of the properties of an artifact. An artifact represents a URI addressable object or data. Some examples are a dataset and a model.

interface ArtifactSummary {
ArtifactArn?: string | null;
ArtifactName?: string | null;
ArtifactType?: string | null;
CreationTime?: Date | number | null;
LastModifiedTime?: Date | number | null;
Source?: ArtifactSource | null;
}

§Properties

§
ArtifactArn?: string | null
[src]

The Amazon Resource Name (ARN) of the artifact.

§
ArtifactName?: string | null
[src]

The name of the artifact.

§
ArtifactType?: string | null
[src]

The type of the artifact.

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

When the artifact was created.

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

When the artifact was last modified.

§
Source?: ArtifactSource | null
[src]

The source of the artifact.