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

UpdateTrialComponentRequest

import type { UpdateTrialComponentRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface UpdateTrialComponentRequest {
DisplayName?: string | null;
EndTime?: Date | number | null;
InputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
InputArtifactsToRemove?: string[] | null;
OutputArtifacts?: {
[key: string]: TrialComponentArtifact | null | undefined;
}
| null;
OutputArtifactsToRemove?: string[] | null;
Parameters?: {
[key: string]: TrialComponentParameterValue | null | undefined;
}
| null;
ParametersToRemove?: string[] | null;
StartTime?: Date | number | null;
Status?: TrialComponentStatus | 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]

Replaces all of the component's input artifacts with the specified artifacts.

§
InputArtifactsToRemove?: string[] | null
[src]

The input artifacts to remove from the component.

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

Replaces all of the component's output artifacts with the specified artifacts.

§
OutputArtifactsToRemove?: string[] | null
[src]

The output artifacts to remove from the component.

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

Replaces all of the component's hyperparameters with the specified hyperparameters.

§
ParametersToRemove?: string[] | null
[src]

The hyperparameters to remove from the component.

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

When the component started.

§

The new status of the component.

§
TrialComponentName: string
[src]

The name of the component to update.