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

LabelingJobSummary

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

Provides summary information about a labeling job.

interface LabelingJobSummary {
AnnotationConsolidationLambdaArn?: string | null;
CreationTime: Date | number;
FailureReason?: string | null;
InputConfig?: LabelingJobInputConfig | null;
LabelCounters: LabelCounters;
LabelingJobArn: string;
LabelingJobName: string;
LabelingJobOutput?: LabelingJobOutput | null;
LabelingJobStatus: LabelingJobStatus;
LastModifiedTime: Date | number;
PreHumanTaskLambdaArn: string;
WorkteamArn: string;
}

§Properties

§
AnnotationConsolidationLambdaArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Lambda function used to consolidate the annotations from individual workers into a label for a data object. For more information, see Annotation Consolidation.

§
CreationTime: Date | number
[src]

The date and time that the job was created (timestamp).

§
FailureReason?: string | null
[src]

If the LabelingJobStatus field is Failed, this field contains a description of the error.

§
InputConfig?: LabelingJobInputConfig | null
[src]

Input configuration for the labeling job.

§
LabelCounters: LabelCounters
[src]

Counts showing the progress of the labeling job.

§
LabelingJobArn: string
[src]

The Amazon Resource Name (ARN) assigned to the labeling job when it was created.

§
LabelingJobName: string
[src]

The name of the labeling job.

§
LabelingJobOutput?: LabelingJobOutput | null
[src]

The location of the output produced by the labeling job.

§
LabelingJobStatus: LabelingJobStatus
[src]

The current status of the labeling job.

§
LastModifiedTime: Date | number
[src]

The date and time that the job was last modified (timestamp).

§
PreHumanTaskLambdaArn: string
[src]

The Amazon Resource Name (ARN) of a Lambda function. The function is run before each data object is sent to a worker.

§
WorkteamArn: string
[src]

The Amazon Resource Name (ARN) of the work team assigned to the job.