review_policy_results_for_hits
Creates, updates, deletes, gets or lists a review_policy_results_for_hits resource.
Overview
| Name | review_policy_results_for_hits |
| Type | Resource |
| Id | aws.mturk.review_policy_results_for_hits |
Fields
The following fields are returned by SELECT queries:
- list_review_policy_results_for_hit
| Name | Datatype | Description |
|---|---|---|
assignment_review_policy | object | The name of the Assignment-level Review Policy. This contains only the PolicyName element. |
assignment_review_report | object | Contains both ReviewResult and ReviewAction elements for an Assignment. |
hit_id | string | The HITId of the HIT for which results have been returned. (pattern: <code>^[A-Z0-9]+$</code>) |
hit_review_policy | object | The name of the HIT-level Review Policy. This contains only the PolicyName element. |
hit_review_report | object | Contains both ReviewResult and ReviewAction elements for a particular HIT. |
next_token | string | If 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_review_policy_results_for_hit | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_review_policy_results_for_hit
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
;