workers_with_qualification_types
Creates, updates, deletes, gets or lists a workers_with_qualification_types resource.
Overview
| Name | workers_with_qualification_types |
| Type | Resource |
| Id | aws.mturk.workers_with_qualification_types |
Fields
The following fields are returned by SELECT queries:
- list_workers_with_qualification_type
| Name | Datatype | Description |
|---|---|---|
grant_time | string (date-time) | The date and time the Qualification was granted to the Worker. If the Worker's Qualification was revoked, and then re-granted based on a new Qualification request, GrantTime is the date and time of the last call to the AcceptQualificationRequest operation. |
integer_value | integer | The value (score) of the Qualification, if the Qualification has an integer value. |
locale_value | object | The Locale data structure represents a geographical region or location. |
qualification_type_id | string | The ID of the Qualification type for the Qualification. (pattern: <code>^[A-Z0-9]+$</code>) |
status | string | The status of the Qualification. Valid values are Granted | Revoked. (Granted, Revoked) |
worker_id | string | The ID of the Worker who possesses the Qualification. (pattern: <code>^A[A-Z0-9]+$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_workers_with_qualification_type | select | region | The ListWorkersWithQualificationType operation returns all of the Workers that have been associated with a given Qualification type. |
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_workers_with_qualification_type
The ListWorkersWithQualificationType operation returns all of the Workers that have been associated with a given Qualification type.
SELECT
grant_time,
integer_value,
locale_value,
qualification_type_id,
status,
worker_id
FROM aws.mturk.workers_with_qualification_types
WHERE region = '{{ region }}' -- required
;