List Qualification Types
| mturk_list_qualification_types | R Documentation |
The ListQualificationTypes operation returns a list of Qualification types, filtered by an optional search term¶
Description¶
The list_qualification_types operation returns a list of Qualification
types, filtered by an optional search term.
Usage¶
mturk_list_qualification_types(Query, MustBeRequestable,
MustBeOwnedByCaller, NextToken, MaxResults)
Arguments¶
QueryA text query against all of the searchable attributes of Qualification types.
MustBeRequestable[required] Specifies that only Qualification types that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test, are returned as results of the search. Some Qualification types, such as those assigned automatically by the system, cannot be requested directly by users. If false, all Qualification types, including those managed by the system, are considered. Valid values are True | False.
MustBeOwnedByCallerSpecifies that only Qualification types that the Requester created are returned. If false, the operation returns all Qualification types.
NextTokenMaxResultsThe maximum number of results to return in a single call.
Value¶
A list with the following syntax:
list(
NumResults = 123,
NextToken = "string",
QualificationTypes = list(
list(
QualificationTypeId = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
Name = "string",
Description = "string",
Keywords = "string",
QualificationTypeStatus = "Active"|"Inactive",
Test = "string",
TestDurationInSeconds = 123,
AnswerKey = "string",
RetryDelayInSeconds = 123,
IsRequestable = TRUE|FALSE,
AutoGranted = TRUE|FALSE,
AutoGrantedValue = 123
)
)
)
Request syntax¶
svc$list_qualification_types(
Query = "string",
MustBeRequestable = TRUE|FALSE,
MustBeOwnedByCaller = TRUE|FALSE,
NextToken = "string",
MaxResults = 123
)