FlowDefinitionHumanLoopConfig constructor
- required Input<
String> humanTaskUiArn, - Input<
FlowDefinitionHumanLoopConfigPublicWorkforceTaskPrice?> ? publicWorkforceTaskPrice, - Input<
int?> ? taskAvailabilityLifetimeInSeconds, - required Input<
int> taskCount, - required Input<
String> taskDescription, - Input<
List< ? taskKeywords,String> ?> - Input<
int?> ? taskTimeLimitInSeconds, - required Input<
String> taskTitle, - required Input<
String> workteamArn,
Creates a new FlowDefinitionHumanLoopConfig.
humanTaskUiArn ARN of the human task user interface.
publicWorkforceTaskPrice Defines the amount of money paid to an Amazon Mechanical Turk worker for each task performed. See Public Workforce Task Price details below.
taskAvailabilityLifetimeInSeconds The length of time that a task remains available for review by human workers. Valid value range between 1 and 864000.
taskCount The number of distinct workers who will perform the same task on each object. Valid value range between 1 and 3.
taskDescription A description for the human worker task.
taskKeywords An array of keywords used to describe the task so that workers can discover the task.
taskTimeLimitInSeconds The amount of time that a worker has to complete a task. The default value is 3600 seconds.
taskTitle A title for the human worker task.
workteamArn ARN of the human task user interface. ARN of a team of workers. For Public workforces see AWS Docs.
Implementation
const FlowDefinitionHumanLoopConfig({
required this.humanTaskUiArn,
this.publicWorkforceTaskPrice,
this.taskAvailabilityLifetimeInSeconds,
required this.taskCount,
required this.taskDescription,
this.taskKeywords,
this.taskTimeLimitInSeconds,
required this.taskTitle,
required this.workteamArn,
});