Skip to main content

review_policy_results_for_hits

Creates, updates, deletes, gets or lists a review_policy_results_for_hits resource.

Overview

Namereview_policy_results_for_hits
TypeResource
Idaws.mturk.review_policy_results_for_hits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
assignment_review_policyobjectThe name of the Assignment-level Review Policy. This contains only the PolicyName element.
assignment_review_reportobjectContains both ReviewResult and ReviewAction elements for an Assignment.
hit_idstringThe HITId of the HIT for which results have been returned. (pattern: <code>^[A-Z0-9]+$</code>)
hit_review_policyobjectThe name of the HIT-level Review Policy. This contains only the PolicyName element.
hit_review_reportobjectContains both ReviewResult and ReviewAction elements for a particular HIT.
next_tokenstringIf the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_review_policy_results_for_hitselectregionThe ListReviewPolicyResultsForHIT operation retrieves the computed results and the actions taken in the course of executing your Review Policies for a given HIT. For information about how to specify Review Policies when you call CreateHIT, see Review Policies. The ListReviewPolicyResultsForHIT operation can return results for both Assignment-level and HIT-level review results.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

The ListReviewPolicyResultsForHIT operation retrieves the computed results and the actions taken in the course of executing your Review Policies for a given HIT. For information about how to specify Review Policies when you call CreateHIT, see Review Policies. The ListReviewPolicyResultsForHIT operation can return results for both Assignment-level and HIT-level review results.

SELECT
assignment_review_policy,
assignment_review_report,
hit_id,
hit_review_policy,
hit_review_report,
next_token
FROM aws.mturk.review_policy_results_for_hits
WHERE region = '{{ region }}' -- required
;