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

Experiment

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

The properties of an experiment as returned by the "Search" API.

interface Experiment {
CreatedBy?: UserContext | null;
CreationTime?: Date | number | null;
Description?: string | null;
DisplayName?: string | null;
ExperimentArn?: string | null;
ExperimentName?: string | null;
LastModifiedBy?: UserContext | null;
LastModifiedTime?: Date | number | null;
Source?: ExperimentSource | null;
Tags?: Tag[] | null;
}

§Properties

§
CreatedBy?: UserContext | null
[src]

Who created the experiment.

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

When the experiment was created.

§
Description?: string | null
[src]

The description of the experiment.

§
DisplayName?: string | null
[src]

The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed.

§
ExperimentArn?: string | null
[src]

The Amazon Resource Name (ARN) of the experiment.

§
ExperimentName?: string | null
[src]

The name of the experiment.

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

When the experiment was last modified.

§
Source?: ExperimentSource | null
[src]
§
Tags?: Tag[] | null
[src]

The list of tags that are associated with the experiment. You can use "Search" API to search on the tags.