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

TrialComponentSummary

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

A summary of the properties of a trial component. To get all the properties, call the "DescribeTrialComponent" API and provide the TrialComponentName.

interface TrialComponentSummary {
CreatedBy?: UserContext | null;
CreationTime?: Date | number | null;
DisplayName?: string | null;
EndTime?: Date | number | null;
LastModifiedBy?: UserContext | null;
LastModifiedTime?: Date | number | null;
StartTime?: Date | number | null;
Status?: TrialComponentStatus | null;
TrialComponentArn?: string | null;
TrialComponentName?: string | null;
TrialComponentSource?: TrialComponentSource | null;
}

§Properties

§
CreatedBy?: UserContext | null
[src]

Who created the trial component.

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

When the component was created.

§
DisplayName?: string | null
[src]

The name of the component as displayed. If DisplayName isn't specified, TrialComponentName is displayed.

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

When the component ended.

§
LastModifiedBy?: UserContext | null
[src]

Who last modified the component.

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

When the component was last modified.

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

When the component started.

§

The status of the component. States include:

  • InProgress
  • Completed
  • Failed
§
TrialComponentArn?: string | null
[src]

The Amazon Resource Name (ARN) of the trial component.

§
TrialComponentName?: string | null
[src]

The name of the trial component.

§
TrialComponentSource?: TrialComponentSource | null
[src]