Interface CreateHitTypeRequest.Builder

    • Method Detail

      • autoApprovalDelayInSeconds

        CreateHitTypeRequest.Builder autoApprovalDelayInSeconds​(Long autoApprovalDelayInSeconds)

        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.

        Parameters:
        autoApprovalDelayInSeconds - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • assignmentDurationInSeconds

        CreateHitTypeRequest.Builder assignmentDurationInSeconds​(Long assignmentDurationInSeconds)

        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.

        Parameters:
        assignmentDurationInSeconds - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • reward

        CreateHitTypeRequest.Builder reward​(String reward)

        The amount of money the Requester will pay a Worker for successfully completing the HIT.

        Parameters:
        reward - The amount of money the Requester will pay a Worker for successfully completing the HIT.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • title

        CreateHitTypeRequest.Builder title​(String title)

        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.

        Parameters:
        title - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • keywords

        CreateHitTypeRequest.Builder keywords​(String keywords)

        One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs.

        Parameters:
        keywords - One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        CreateHitTypeRequest.Builder description​(String description)

        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.

        Parameters:
        description - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • qualificationRequirements

        CreateHitTypeRequest.Builder qualificationRequirements​(Collection<QualificationRequirement> qualificationRequirements)

        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.

        Parameters:
        qualificationRequirements - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • qualificationRequirements

        CreateHitTypeRequest.Builder qualificationRequirements​(QualificationRequirement... qualificationRequirements)

        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.

        Parameters:
        qualificationRequirements - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • qualificationRequirements

        CreateHitTypeRequest.Builder qualificationRequirements​(Consumer<QualificationRequirement.Builder>... qualificationRequirements)

        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.

        This is a convenience method that creates an instance of the QualificationRequirement.Builder avoiding the need to create one manually via QualificationRequirement.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #qualificationRequirements(List).

        Parameters:
        qualificationRequirements - a consumer that will call methods on QualificationRequirement.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #qualificationRequirements(java.util.Collection)