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

TrialComponent

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

The properties of a trial component as returned by the "Search" API.

interface TrialComponent {
CreatedBy?: UserContext | null;
CreationTime?: Date | number | null;
DisplayName?: string | null;
EndTime?: Date | number | null;
InputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
LastModifiedBy?: UserContext | null;
LastModifiedTime?: Date | number | null;
LineageGroupArn?: string | null;
MetadataProperties?: MetadataProperties | null;
Metrics?: TrialComponentMetricSummary[] | null;
OutputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
Parameters?: {
[key: string]: TrialComponentParameterValue | null | undefined;
}
| null;
Parents?: Parent[] | null;
RunName?: string | null;
Source?: TrialComponentSource | null;
SourceDetail?: TrialComponentSourceDetail | null;
StartTime?: Date | number | null;
Status?: TrialComponentStatus | null;
Tags?: Tag[] | null;
TrialComponentArn?: string | null;
TrialComponentName?: string | 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.

§
InputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null
[src]

The input artifacts of the component.

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

When the component was last modified.

§
LineageGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the lineage group resource.

§
MetadataProperties?: MetadataProperties | null
[src]
§

The metrics for the component.

§
OutputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null
[src]

The output artifacts of the component.

§
Parameters?: {
[key: string]: TrialComponentParameterValue | null | undefined;
}
| null
[src]

The hyperparameters of the component.

§
Parents?: Parent[] | null
[src]

An array of the parents of the component. A parent is a trial the component is associated with and the experiment the trial is part of. A component might not have any parents.

§
RunName?: string | null
[src]

The name of the experiment run.

§

The Amazon Resource Name (ARN) and job type of the source of the component.

§
SourceDetail?: TrialComponentSourceDetail | null
[src]

Details of the source of the component.

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

When the component started.

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

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

§
TrialComponentArn?: string | null
[src]

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

§
TrialComponentName?: string | null
[src]

The name of the trial component.