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

TrialComponentSourceDetail

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

Detailed information about the source of a trial component. Either ProcessingJob or TrainingJob is returned.

interface TrialComponentSourceDetail {
ProcessingJob?: ProcessingJob | null;
SourceArn?: string | null;
TrainingJob?: TrainingJob | null;
TransformJob?: TransformJob | null;
}

§Properties

§
ProcessingJob?: ProcessingJob | null
[src]

Information about a processing job that's the source of a trial component.

§
SourceArn?: string | null
[src]

The Amazon Resource Name (ARN) of the source.

§
TrainingJob?: TrainingJob | null
[src]

Information about a training job that's the source of a trial component.

§
TransformJob?: TransformJob | null
[src]

Information about a transform job that's the source of a trial component.