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

DescribeTrialComponentResponse

import type { DescribeTrialComponentResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeTrialComponentResponse {
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;
Source?: TrialComponentSource | null;
Sources?: TrialComponentSource[] | null;
StartTime?: Date | number | null;
Status?: TrialComponentStatus | 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]

Who last modified the component.

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

When the component was last modified.

§
LineageGroupArn?: string | null
[src]

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

§
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.

§

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

§
Sources?: TrialComponentSource[] | null
[src]

A list of ARNs and, if applicable, job types for multiple sources of an experiment run.

§
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.