Skip to main content

workers_with_qualification_types

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

Overview

Nameworkers_with_qualification_types
TypeResource
Idaws.mturk.workers_with_qualification_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
grant_timestring (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_valueintegerThe value (score) of the Qualification, if the Qualification has an integer value.
locale_valueobjectThe Locale data structure represents a geographical region or location.
qualification_type_idstringThe ID of the Qualification type for the Qualification. (pattern: <code>^[A-Z0-9]+$</code>)
statusstringThe status of the Qualification. Valid values are Granted | Revoked. (Granted, Revoked)
worker_idstringThe ID of the Worker who possesses the Qualification. (pattern: <code>^A[A-Z0-9]+$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_workers_with_qualification_typeselectregionThe 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.

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

SELECT examples

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
;