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

TransformJobSummary

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

Provides a summary of a transform job. Multiple TransformJobSummary objects are returned as a list after in response to a "ListTransformJobs" call.

interface TransformJobSummary {
CreationTime: Date | number;
FailureReason?: string | null;
LastModifiedTime?: Date | number | null;
TransformEndTime?: Date | number | null;
TransformJobArn: string;
TransformJobName: string;
TransformJobStatus: TransformJobStatus;
}

§Properties

§
CreationTime: Date | number
[src]

A timestamp that shows when the transform Job was created.

§
FailureReason?: string | null
[src]

If the transform job failed, the reason it failed.

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

Indicates when the transform job was last modified.

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

Indicates when the transform job ends on compute instances. For successful jobs and stopped jobs, this is the exact time recorded after the results are uploaded. For failed jobs, this is when Amazon SageMaker detected that the job failed.

§
TransformJobArn: string
[src]

The Amazon Resource Name (ARN) of the transform job.

§
TransformJobName: string
[src]

The name of the transform job.

§
TransformJobStatus: TransformJobStatus
[src]

The status of the transform job.