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

ProcessingJobSummary

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

Summary of information about a processing job.

interface ProcessingJobSummary {
CreationTime: Date | number;
ExitMessage?: string | null;
FailureReason?: string | null;
LastModifiedTime?: Date | number | null;
ProcessingEndTime?: Date | number | null;
ProcessingJobArn: string;
ProcessingJobName: string;
ProcessingJobStatus: ProcessingJobStatus;
}

§Properties

§
CreationTime: Date | number
[src]

The time at which the processing job was created.

§
ExitMessage?: string | null
[src]

An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.

§
FailureReason?: string | null
[src]

A string, up to one KB in size, that contains the reason a processing job failed, if it failed.

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

A timestamp that indicates the last time the processing job was modified.

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

The time at which the processing job completed.

§
ProcessingJobArn: string
[src]

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

§
ProcessingJobName: string
[src]

The name of the processing job.

§
ProcessingJobStatus: ProcessingJobStatus
[src]

The status of the processing job.