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

TrialSummary

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

A summary of the properties of a trial. To get the complete set of properties, call the "DescribeTrial" API and provide the TrialName.

interface TrialSummary {
CreationTime?: Date | number | null;
DisplayName?: string | null;
LastModifiedTime?: Date | number | null;
TrialArn?: string | null;
TrialName?: string | null;
TrialSource?: TrialSource | null;
}

§Properties

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

When the trial was created.

§
DisplayName?: string | null
[src]

The name of the trial as displayed. If DisplayName isn't specified, TrialName is displayed.

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

When the trial was last modified.

§
TrialArn?: string | null
[src]

The Amazon Resource Name (ARN) of the trial.

§
TrialName?: string | null
[src]

The name of the trial.

§
TrialSource?: TrialSource | null
[src]