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

HumanLoopConfig

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

Describes the work to be performed by human workers.

interface HumanLoopConfig {
HumanTaskUiArn: string;
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | null;
TaskAvailabilityLifetimeInSeconds?: number | null;
TaskCount: number;
TaskDescription: string;
TaskKeywords?: string[] | null;
TaskTimeLimitInSeconds?: number | null;
TaskTitle: string;
WorkteamArn: string;
}

§Properties

§
HumanTaskUiArn: string
[src]

The Amazon Resource Name (ARN) of the human task user interface.

You can use standard HTML and Crowd HTML Elements to create a custom worker task template. You use this template to create a human task UI.

To learn how to create a custom HTML template, see Create Custom Worker Task Template.

To learn how to create a human task UI, which is a worker task template that can be used in a flow definition, see Create and Delete a Worker Task Templates.

§
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | null
[src]
§
TaskAvailabilityLifetimeInSeconds?: number | null
[src]

The length of time that a task remains available for review by human workers.

§
TaskCount: number
[src]

The number of distinct workers who will perform the same task on each object. For example, if TaskCount is set to 3 for an image classification labeling job, three workers will classify each input image. Increasing TaskCount can improve label accuracy.

§
TaskDescription: string
[src]

A description for the human worker task.

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

Keywords used to describe the task so that workers can discover the task.

§
TaskTimeLimitInSeconds?: number | null
[src]

The amount of time that a worker has to complete a task. The default value is 3,600 seconds (1 hour).

§
TaskTitle: string
[src]

A title for the human worker task.

§
WorkteamArn: string
[src]

Amazon Resource Name (ARN) of a team of workers. To learn more about the types of workforces and work teams you can create and use with Amazon A2I, see Create and Manage Workforces.