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

CreateTrialComponentRequest

import type { CreateTrialComponentRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateTrialComponentRequest {
DisplayName?: string | null;
EndTime?: Date | number | null;
InputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
MetadataProperties?: MetadataProperties | null;
OutputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
Parameters?: {
[key: string]: TrialComponentParameterValue | null | undefined;
}
| null;
StartTime?: Date | number | null;
Status?: TrialComponentStatus | null;
Tags?: Tag[] | null;
TrialComponentName: string;
}

§Properties

§
DisplayName?: string | null
[src]

The name of the component as displayed. The name doesn't need to be unique. 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 for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.

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

The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

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

The hyperparameters for the component.

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

When the component started.

§

The status of the component. States include:

  • InProgress
  • Completed
  • Failed
§
Tags?: Tag[] | null
[src]

A list of tags to associate with the component. You can use "Search" API to search on the tags.

§
TrialComponentName: string
[src]

The name of the component. The name must be unique in your Amazon Web Services account and is not case-sensitive.