Class: Aws::MTurk::Types::CreateHITTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::CreateHITTypeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assignment_duration_in_seconds ⇒ Integer
The amount of time, in seconds, that a Worker has to complete the HIT after accepting it.
-
#auto_approval_delay_in_seconds ⇒ Integer
The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it.
-
#description ⇒ String
A general description of the HIT.
-
#keywords ⇒ String
One or more words or phrases that describe the HIT, separated by commas.
-
#qualification_requirements ⇒ Array<Types::QualificationRequirement>
Conditions that a Worker’s Qualifications must meet in order to accept the HIT.
-
#reward ⇒ String
The amount of money the Requester will pay a Worker for successfully completing the HIT.
-
#title ⇒ String
The title of the HIT.
Instance Attribute Details
#assignment_duration_in_seconds ⇒ Integer
The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#auto_approval_delay_in_seconds ⇒ Integer
The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#keywords ⇒ String
One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#qualification_requirements ⇒ Array<Types::QualificationRequirement>
Conditions that a Worker’s Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the ‘ActionsGuarded` field on each `QualificationRequirement` structure.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#reward ⇒ String
The amount of money the Requester will pay a Worker for successfully completing the HIT.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/aws-sdk-mturk/types.rb', line 479 class CreateHITTypeRequest < Struct.new( :auto_approval_delay_in_seconds, :assignment_duration_in_seconds, :reward, :title, :keywords, :description, :qualification_requirements) SENSITIVE = [] include Aws::Structure end |