MTurkClient#
Auto-generated documentation for MTurk type annotations stubs module mypy-boto3-mturk.
MTurkClient#
Type annotations and code completion for boto3.client("mturk")
.
boto3 documentation
# MTurkClient usage example
from boto3.session import Session
from mypy_boto3_mturk.client import MTurkClient
def get_mturk_client() -> MTurkClient:
return Session().client("mturk")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("mturk").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("mturk")
try:
do_something(client)
except (
client.exceptions.ClientError,
client.exceptions.RequestError,
client.exceptions.ServiceFault,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_mturk.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
...
Methods#
accept_qualification_request#
The AcceptQualificationRequest
operation approves a Worker's request for a
Qualification.
Type annotations and code completion for boto3.client("mturk").accept_qualification_request
method.
boto3 documentation
# accept_qualification_request method definition
def accept_qualification_request(
self,
*,
QualificationRequestId: str,
IntegerValue: int = ...,
) -> Dict[str, Any]:
...
# accept_qualification_request method usage example with argument unpacking
kwargs: AcceptQualificationRequestRequestRequestTypeDef = { # (1)
"QualificationRequestId": ...,
}
parent.accept_qualification_request(**kwargs)
approve_assignment#
The ApproveAssignment
operation approves the results of a completed
assignment.
Type annotations and code completion for boto3.client("mturk").approve_assignment
method.
boto3 documentation
# approve_assignment method definition
def approve_assignment(
self,
*,
AssignmentId: str,
RequesterFeedback: str = ...,
OverrideRejection: bool = ...,
) -> Dict[str, Any]:
...
# approve_assignment method usage example with argument unpacking
kwargs: ApproveAssignmentRequestRequestTypeDef = { # (1)
"AssignmentId": ...,
}
parent.approve_assignment(**kwargs)
associate_qualification_with_worker#
The AssociateQualificationWithWorker
operation gives a Worker a Qualification.
Type annotations and code completion for boto3.client("mturk").associate_qualification_with_worker
method.
boto3 documentation
# associate_qualification_with_worker method definition
def associate_qualification_with_worker(
self,
*,
QualificationTypeId: str,
WorkerId: str,
IntegerValue: int = ...,
SendNotification: bool = ...,
) -> Dict[str, Any]:
...
# associate_qualification_with_worker method usage example with argument unpacking
kwargs: AssociateQualificationWithWorkerRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
"WorkerId": ...,
}
parent.associate_qualification_with_worker(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("mturk").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("mturk").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_additional_assignments_for_hit#
The CreateAdditionalAssignmentsForHIT
operation increases the maximum number
of assignments of an existing HIT.
Type annotations and code completion for boto3.client("mturk").create_additional_assignments_for_hit
method.
boto3 documentation
# create_additional_assignments_for_hit method definition
def create_additional_assignments_for_hit(
self,
*,
HITId: str,
NumberOfAdditionalAssignments: int,
UniqueRequestToken: str = ...,
) -> Dict[str, Any]:
...
# create_additional_assignments_for_hit method usage example with argument unpacking
kwargs: CreateAdditionalAssignmentsForHITRequestRequestTypeDef = { # (1)
"HITId": ...,
"NumberOfAdditionalAssignments": ...,
}
parent.create_additional_assignments_for_hit(**kwargs)
create_hit#
The CreateHIT
operation creates a new Human Intelligence Task (HIT).
Type annotations and code completion for boto3.client("mturk").create_hit
method.
boto3 documentation
# create_hit method definition
def create_hit(
self,
*,
LifetimeInSeconds: int,
AssignmentDurationInSeconds: int,
Reward: str,
Title: str,
Description: str,
MaxAssignments: int = ...,
AutoApprovalDelayInSeconds: int = ...,
Keywords: str = ...,
Question: str = ...,
RequesterAnnotation: str = ...,
QualificationRequirements: Sequence[QualificationRequirementUnionTypeDef] = ..., # (1)
UniqueRequestToken: str = ...,
AssignmentReviewPolicy: ReviewPolicyTypeDef = ..., # (2)
HITReviewPolicy: ReviewPolicyTypeDef = ..., # (2)
HITLayoutId: str = ...,
HITLayoutParameters: Sequence[HITLayoutParameterTypeDef] = ..., # (4)
) -> CreateHITResponseTypeDef: # (5)
...
- See QualificationRequirementTypeDef QualificationRequirementOutputTypeDef
- See ReviewPolicyTypeDef
- See ReviewPolicyTypeDef
- See HITLayoutParameterTypeDef
- See CreateHITResponseTypeDef
# create_hit method usage example with argument unpacking
kwargs: CreateHITRequestRequestTypeDef = { # (1)
"LifetimeInSeconds": ...,
"AssignmentDurationInSeconds": ...,
"Reward": ...,
"Title": ...,
"Description": ...,
}
parent.create_hit(**kwargs)
create_hit_type#
The CreateHITType
operation creates a new HIT type.
Type annotations and code completion for boto3.client("mturk").create_hit_type
method.
boto3 documentation
# create_hit_type method definition
def create_hit_type(
self,
*,
AssignmentDurationInSeconds: int,
Reward: str,
Title: str,
Description: str,
AutoApprovalDelayInSeconds: int = ...,
Keywords: str = ...,
QualificationRequirements: Sequence[QualificationRequirementTypeDef] = ..., # (1)
) -> CreateHITTypeResponseTypeDef: # (2)
...
# create_hit_type method usage example with argument unpacking
kwargs: CreateHITTypeRequestRequestTypeDef = { # (1)
"AssignmentDurationInSeconds": ...,
"Reward": ...,
"Title": ...,
"Description": ...,
}
parent.create_hit_type(**kwargs)
create_hit_with_hit_type#
The CreateHITWithHITType
operation creates a new Human Intelligence Task
(HIT) using an existing HITTypeID generated by the CreateHITType
operation.
Type annotations and code completion for boto3.client("mturk").create_hit_with_hit_type
method.
boto3 documentation
# create_hit_with_hit_type method definition
def create_hit_with_hit_type(
self,
*,
HITTypeId: str,
LifetimeInSeconds: int,
MaxAssignments: int = ...,
Question: str = ...,
RequesterAnnotation: str = ...,
UniqueRequestToken: str = ...,
AssignmentReviewPolicy: ReviewPolicyTypeDef = ..., # (1)
HITReviewPolicy: ReviewPolicyTypeDef = ..., # (1)
HITLayoutId: str = ...,
HITLayoutParameters: Sequence[HITLayoutParameterTypeDef] = ..., # (3)
) -> CreateHITWithHITTypeResponseTypeDef: # (4)
...
- See ReviewPolicyTypeDef
- See ReviewPolicyTypeDef
- See HITLayoutParameterTypeDef
- See CreateHITWithHITTypeResponseTypeDef
# create_hit_with_hit_type method usage example with argument unpacking
kwargs: CreateHITWithHITTypeRequestRequestTypeDef = { # (1)
"HITTypeId": ...,
"LifetimeInSeconds": ...,
}
parent.create_hit_with_hit_type(**kwargs)
create_qualification_type#
The CreateQualificationType
operation creates a new Qualification type, which
is represented by a QualificationType
data structure.
Type annotations and code completion for boto3.client("mturk").create_qualification_type
method.
boto3 documentation
# create_qualification_type method definition
def create_qualification_type(
self,
*,
Name: str,
Description: str,
QualificationTypeStatus: QualificationTypeStatusType, # (1)
Keywords: str = ...,
RetryDelayInSeconds: int = ...,
Test: str = ...,
AnswerKey: str = ...,
TestDurationInSeconds: int = ...,
AutoGranted: bool = ...,
AutoGrantedValue: int = ...,
) -> CreateQualificationTypeResponseTypeDef: # (2)
...
# create_qualification_type method usage example with argument unpacking
kwargs: CreateQualificationTypeRequestRequestTypeDef = { # (1)
"Name": ...,
"Description": ...,
"QualificationTypeStatus": ...,
}
parent.create_qualification_type(**kwargs)
create_worker_block#
The CreateWorkerBlock
operation allows you to prevent a Worker from working
on your HITs.
Type annotations and code completion for boto3.client("mturk").create_worker_block
method.
boto3 documentation
# create_worker_block method definition
def create_worker_block(
self,
*,
WorkerId: str,
Reason: str,
) -> Dict[str, Any]:
...
# create_worker_block method usage example with argument unpacking
kwargs: CreateWorkerBlockRequestRequestTypeDef = { # (1)
"WorkerId": ...,
"Reason": ...,
}
parent.create_worker_block(**kwargs)
delete_hit#
The DeleteHIT
operation is used to delete HIT that is no longer needed.
Type annotations and code completion for boto3.client("mturk").delete_hit
method.
boto3 documentation
# delete_hit method definition
def delete_hit(
self,
*,
HITId: str,
) -> Dict[str, Any]:
...
# delete_hit method usage example with argument unpacking
kwargs: DeleteHITRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.delete_hit(**kwargs)
delete_qualification_type#
The DeleteQualificationType
deletes a Qualification type and deletes any HIT
types that are associated with the Qualification type.
Type annotations and code completion for boto3.client("mturk").delete_qualification_type
method.
boto3 documentation
# delete_qualification_type method definition
def delete_qualification_type(
self,
*,
QualificationTypeId: str,
) -> Dict[str, Any]:
...
# delete_qualification_type method usage example with argument unpacking
kwargs: DeleteQualificationTypeRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.delete_qualification_type(**kwargs)
delete_worker_block#
The DeleteWorkerBlock
operation allows you to reinstate a blocked Worker to
work on your HITs.
Type annotations and code completion for boto3.client("mturk").delete_worker_block
method.
boto3 documentation
# delete_worker_block method definition
def delete_worker_block(
self,
*,
WorkerId: str,
Reason: str = ...,
) -> Dict[str, Any]:
...
# delete_worker_block method usage example with argument unpacking
kwargs: DeleteWorkerBlockRequestRequestTypeDef = { # (1)
"WorkerId": ...,
}
parent.delete_worker_block(**kwargs)
disassociate_qualification_from_worker#
The DisassociateQualificationFromWorker
revokes a previously granted
Qualification from a user.
Type annotations and code completion for boto3.client("mturk").disassociate_qualification_from_worker
method.
boto3 documentation
# disassociate_qualification_from_worker method definition
def disassociate_qualification_from_worker(
self,
*,
WorkerId: str,
QualificationTypeId: str,
Reason: str = ...,
) -> Dict[str, Any]:
...
# disassociate_qualification_from_worker method usage example with argument unpacking
kwargs: DisassociateQualificationFromWorkerRequestRequestTypeDef = { # (1)
"WorkerId": ...,
"QualificationTypeId": ...,
}
parent.disassociate_qualification_from_worker(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("mturk").generate_presigned_url
method.
boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_account_balance#
The GetAccountBalance
operation retrieves the Prepaid HITs balance in your
Amazon Mechanical Turk account if you are a Prepaid Requester.
Type annotations and code completion for boto3.client("mturk").get_account_balance
method.
boto3 documentation
# get_account_balance method definition
def get_account_balance(
self,
) -> GetAccountBalanceResponseTypeDef: # (1)
...
get_assignment#
The GetAssignment
operation retrieves the details of the specified Assignment.
Type annotations and code completion for boto3.client("mturk").get_assignment
method.
boto3 documentation
# get_assignment method definition
def get_assignment(
self,
*,
AssignmentId: str,
) -> GetAssignmentResponseTypeDef: # (1)
...
# get_assignment method usage example with argument unpacking
kwargs: GetAssignmentRequestRequestTypeDef = { # (1)
"AssignmentId": ...,
}
parent.get_assignment(**kwargs)
get_file_upload_url#
The GetFileUploadURL
operation generates and returns a temporary URL.
Type annotations and code completion for boto3.client("mturk").get_file_upload_url
method.
boto3 documentation
# get_file_upload_url method definition
def get_file_upload_url(
self,
*,
AssignmentId: str,
QuestionIdentifier: str,
) -> GetFileUploadURLResponseTypeDef: # (1)
...
# get_file_upload_url method usage example with argument unpacking
kwargs: GetFileUploadURLRequestRequestTypeDef = { # (1)
"AssignmentId": ...,
"QuestionIdentifier": ...,
}
parent.get_file_upload_url(**kwargs)
get_hit#
The GetHIT
operation retrieves the details of the specified HIT.
Type annotations and code completion for boto3.client("mturk").get_hit
method.
boto3 documentation
# get_hit method definition
def get_hit(
self,
*,
HITId: str,
) -> GetHITResponseTypeDef: # (1)
...
# get_hit method usage example with argument unpacking
kwargs: GetHITRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.get_hit(**kwargs)
get_qualification_score#
The GetQualificationScore
operation returns the value of a Worker's
Qualification for a given Qualification type.
Type annotations and code completion for boto3.client("mturk").get_qualification_score
method.
boto3 documentation
# get_qualification_score method definition
def get_qualification_score(
self,
*,
QualificationTypeId: str,
WorkerId: str,
) -> GetQualificationScoreResponseTypeDef: # (1)
...
# get_qualification_score method usage example with argument unpacking
kwargs: GetQualificationScoreRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
"WorkerId": ...,
}
parent.get_qualification_score(**kwargs)
get_qualification_type#
The GetQualificationType
operation retrieves information about a Qualification
type using its ID.
Type annotations and code completion for boto3.client("mturk").get_qualification_type
method.
boto3 documentation
# get_qualification_type method definition
def get_qualification_type(
self,
*,
QualificationTypeId: str,
) -> GetQualificationTypeResponseTypeDef: # (1)
...
# get_qualification_type method usage example with argument unpacking
kwargs: GetQualificationTypeRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.get_qualification_type(**kwargs)
list_assignments_for_hit#
The ListAssignmentsForHIT
operation retrieves completed assignments for a HIT.
Type annotations and code completion for boto3.client("mturk").list_assignments_for_hit
method.
boto3 documentation
# list_assignments_for_hit method definition
def list_assignments_for_hit(
self,
*,
HITId: str,
NextToken: str = ...,
MaxResults: int = ...,
AssignmentStatuses: Sequence[AssignmentStatusType] = ..., # (1)
) -> ListAssignmentsForHITResponseTypeDef: # (2)
...
# list_assignments_for_hit method usage example with argument unpacking
kwargs: ListAssignmentsForHITRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.list_assignments_for_hit(**kwargs)
list_bonus_payments#
The ListBonusPayments
operation retrieves the amounts of bonuses you have
paid to Workers for a given HIT or assignment.
Type annotations and code completion for boto3.client("mturk").list_bonus_payments
method.
boto3 documentation
# list_bonus_payments method definition
def list_bonus_payments(
self,
*,
HITId: str = ...,
AssignmentId: str = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListBonusPaymentsResponseTypeDef: # (1)
...
# list_bonus_payments method usage example with argument unpacking
kwargs: ListBonusPaymentsRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.list_bonus_payments(**kwargs)
list_hits#
The ListHITs
operation returns all of a Requester's HITs.
Type annotations and code completion for boto3.client("mturk").list_hits
method.
boto3 documentation
# list_hits method definition
def list_hits(
self,
*,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListHITsResponseTypeDef: # (1)
...
# list_hits method usage example with argument unpacking
kwargs: ListHITsRequestRequestTypeDef = { # (1)
"NextToken": ...,
}
parent.list_hits(**kwargs)
list_hits_for_qualification_type#
The ListHITsForQualificationType
operation returns the HITs that use the
given Qualification type for a Qualification requirement.
Type annotations and code completion for boto3.client("mturk").list_hits_for_qualification_type
method.
boto3 documentation
# list_hits_for_qualification_type method definition
def list_hits_for_qualification_type(
self,
*,
QualificationTypeId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListHITsForQualificationTypeResponseTypeDef: # (1)
...
# list_hits_for_qualification_type method usage example with argument unpacking
kwargs: ListHITsForQualificationTypeRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.list_hits_for_qualification_type(**kwargs)
list_qualification_requests#
The ListQualificationRequests
operation retrieves requests for Qualifications
of a particular Qualification type.
Type annotations and code completion for boto3.client("mturk").list_qualification_requests
method.
boto3 documentation
# list_qualification_requests method definition
def list_qualification_requests(
self,
*,
QualificationTypeId: str = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListQualificationRequestsResponseTypeDef: # (1)
...
# list_qualification_requests method usage example with argument unpacking
kwargs: ListQualificationRequestsRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.list_qualification_requests(**kwargs)
list_qualification_types#
The ListQualificationTypes
operation returns a list of Qualification types,
filtered by an optional search term.
Type annotations and code completion for boto3.client("mturk").list_qualification_types
method.
boto3 documentation
# list_qualification_types method definition
def list_qualification_types(
self,
*,
MustBeRequestable: bool,
Query: str = ...,
MustBeOwnedByCaller: bool = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListQualificationTypesResponseTypeDef: # (1)
...
# list_qualification_types method usage example with argument unpacking
kwargs: ListQualificationTypesRequestRequestTypeDef = { # (1)
"MustBeRequestable": ...,
}
parent.list_qualification_types(**kwargs)
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.
Type annotations and code completion for boto3.client("mturk").list_review_policy_results_for_hit
method.
boto3 documentation
# list_review_policy_results_for_hit method definition
def list_review_policy_results_for_hit(
self,
*,
HITId: str,
PolicyLevels: Sequence[ReviewPolicyLevelType] = ..., # (1)
RetrieveActions: bool = ...,
RetrieveResults: bool = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListReviewPolicyResultsForHITResponseTypeDef: # (2)
...
# list_review_policy_results_for_hit method usage example with argument unpacking
kwargs: ListReviewPolicyResultsForHITRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.list_review_policy_results_for_hit(**kwargs)
list_reviewable_hits#
The ListReviewableHITs
operation retrieves the HITs with Status equal to
Reviewable or Status equal to Reviewing that belong to the Requester calling
the operation.
Type annotations and code completion for boto3.client("mturk").list_reviewable_hits
method.
boto3 documentation
# list_reviewable_hits method definition
def list_reviewable_hits(
self,
*,
HITTypeId: str = ...,
Status: ReviewableHITStatusType = ..., # (1)
NextToken: str = ...,
MaxResults: int = ...,
) -> ListReviewableHITsResponseTypeDef: # (2)
...
# list_reviewable_hits method usage example with argument unpacking
kwargs: ListReviewableHITsRequestRequestTypeDef = { # (1)
"HITTypeId": ...,
}
parent.list_reviewable_hits(**kwargs)
list_worker_blocks#
The ListWorkersBlocks
operation retrieves a list of Workers who are blocked
from working on your HITs.
Type annotations and code completion for boto3.client("mturk").list_worker_blocks
method.
boto3 documentation
# list_worker_blocks method definition
def list_worker_blocks(
self,
*,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListWorkerBlocksResponseTypeDef: # (1)
...
# list_worker_blocks method usage example with argument unpacking
kwargs: ListWorkerBlocksRequestRequestTypeDef = { # (1)
"NextToken": ...,
}
parent.list_worker_blocks(**kwargs)
list_workers_with_qualification_type#
The ListWorkersWithQualificationType
operation returns all of the Workers
that have been associated with a given Qualification type.
Type annotations and code completion for boto3.client("mturk").list_workers_with_qualification_type
method.
boto3 documentation
# list_workers_with_qualification_type method definition
def list_workers_with_qualification_type(
self,
*,
QualificationTypeId: str,
Status: QualificationStatusType = ..., # (1)
NextToken: str = ...,
MaxResults: int = ...,
) -> ListWorkersWithQualificationTypeResponseTypeDef: # (2)
...
# list_workers_with_qualification_type method usage example with argument unpacking
kwargs: ListWorkersWithQualificationTypeRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.list_workers_with_qualification_type(**kwargs)
notify_workers#
The NotifyWorkers
operation sends an email to one or more Workers that you
specify with the Worker ID.
Type annotations and code completion for boto3.client("mturk").notify_workers
method.
boto3 documentation
# notify_workers method definition
def notify_workers(
self,
*,
Subject: str,
MessageText: str,
WorkerIds: Sequence[str],
) -> NotifyWorkersResponseTypeDef: # (1)
...
# notify_workers method usage example with argument unpacking
kwargs: NotifyWorkersRequestRequestTypeDef = { # (1)
"Subject": ...,
"MessageText": ...,
"WorkerIds": ...,
}
parent.notify_workers(**kwargs)
reject_assignment#
The RejectAssignment
operation rejects the results of a completed assignment.
Type annotations and code completion for boto3.client("mturk").reject_assignment
method.
boto3 documentation
# reject_assignment method definition
def reject_assignment(
self,
*,
AssignmentId: str,
RequesterFeedback: str,
) -> Dict[str, Any]:
...
# reject_assignment method usage example with argument unpacking
kwargs: RejectAssignmentRequestRequestTypeDef = { # (1)
"AssignmentId": ...,
"RequesterFeedback": ...,
}
parent.reject_assignment(**kwargs)
reject_qualification_request#
The RejectQualificationRequest
operation rejects a user's request for a
Qualification.
Type annotations and code completion for boto3.client("mturk").reject_qualification_request
method.
boto3 documentation
# reject_qualification_request method definition
def reject_qualification_request(
self,
*,
QualificationRequestId: str,
Reason: str = ...,
) -> Dict[str, Any]:
...
# reject_qualification_request method usage example with argument unpacking
kwargs: RejectQualificationRequestRequestRequestTypeDef = { # (1)
"QualificationRequestId": ...,
}
parent.reject_qualification_request(**kwargs)
send_bonus#
The SendBonus
operation issues a payment of money from your account to a
Worker.
Type annotations and code completion for boto3.client("mturk").send_bonus
method.
boto3 documentation
# send_bonus method definition
def send_bonus(
self,
*,
WorkerId: str,
BonusAmount: str,
AssignmentId: str,
Reason: str,
UniqueRequestToken: str = ...,
) -> Dict[str, Any]:
...
# send_bonus method usage example with argument unpacking
kwargs: SendBonusRequestRequestTypeDef = { # (1)
"WorkerId": ...,
"BonusAmount": ...,
"AssignmentId": ...,
"Reason": ...,
}
parent.send_bonus(**kwargs)
send_test_event_notification#
The SendTestEventNotification
operation causes Amazon Mechanical Turk to send
a notification message as if a HIT event occurred, according to the provided
notification specification.
Type annotations and code completion for boto3.client("mturk").send_test_event_notification
method.
boto3 documentation
# send_test_event_notification method definition
def send_test_event_notification(
self,
*,
Notification: NotificationSpecificationTypeDef, # (1)
TestEventType: EventTypeType, # (2)
) -> Dict[str, Any]:
...
# send_test_event_notification method usage example with argument unpacking
kwargs: SendTestEventNotificationRequestRequestTypeDef = { # (1)
"Notification": ...,
"TestEventType": ...,
}
parent.send_test_event_notification(**kwargs)
update_expiration_for_hit#
The UpdateExpirationForHIT
operation allows you update the expiration time of
a HIT.
Type annotations and code completion for boto3.client("mturk").update_expiration_for_hit
method.
boto3 documentation
# update_expiration_for_hit method definition
def update_expiration_for_hit(
self,
*,
HITId: str,
ExpireAt: TimestampTypeDef,
) -> Dict[str, Any]:
...
# update_expiration_for_hit method usage example with argument unpacking
kwargs: UpdateExpirationForHITRequestRequestTypeDef = { # (1)
"HITId": ...,
"ExpireAt": ...,
}
parent.update_expiration_for_hit(**kwargs)
update_hit_review_status#
The UpdateHITReviewStatus
operation updates the status of a HIT.
Type annotations and code completion for boto3.client("mturk").update_hit_review_status
method.
boto3 documentation
# update_hit_review_status method definition
def update_hit_review_status(
self,
*,
HITId: str,
Revert: bool = ...,
) -> Dict[str, Any]:
...
# update_hit_review_status method usage example with argument unpacking
kwargs: UpdateHITReviewStatusRequestRequestTypeDef = { # (1)
"HITId": ...,
}
parent.update_hit_review_status(**kwargs)
update_hit_type_of_hit#
The UpdateHITTypeOfHIT
operation allows you to change the HITType properties
of a HIT.
Type annotations and code completion for boto3.client("mturk").update_hit_type_of_hit
method.
boto3 documentation
# update_hit_type_of_hit method definition
def update_hit_type_of_hit(
self,
*,
HITId: str,
HITTypeId: str,
) -> Dict[str, Any]:
...
# update_hit_type_of_hit method usage example with argument unpacking
kwargs: UpdateHITTypeOfHITRequestRequestTypeDef = { # (1)
"HITId": ...,
"HITTypeId": ...,
}
parent.update_hit_type_of_hit(**kwargs)
update_notification_settings#
The UpdateNotificationSettings
operation creates, updates, disables or
re-enables notifications for a HIT type.
Type annotations and code completion for boto3.client("mturk").update_notification_settings
method.
boto3 documentation
# update_notification_settings method definition
def update_notification_settings(
self,
*,
HITTypeId: str,
Notification: NotificationSpecificationTypeDef = ..., # (1)
Active: bool = ...,
) -> Dict[str, Any]:
...
# update_notification_settings method usage example with argument unpacking
kwargs: UpdateNotificationSettingsRequestRequestTypeDef = { # (1)
"HITTypeId": ...,
}
parent.update_notification_settings(**kwargs)
update_qualification_type#
The UpdateQualificationType
operation modifies the attributes of an existing
Qualification type, which is represented by a QualificationType data structure.
Type annotations and code completion for boto3.client("mturk").update_qualification_type
method.
boto3 documentation
# update_qualification_type method definition
def update_qualification_type(
self,
*,
QualificationTypeId: str,
Description: str = ...,
QualificationTypeStatus: QualificationTypeStatusType = ..., # (1)
Test: str = ...,
AnswerKey: str = ...,
TestDurationInSeconds: int = ...,
RetryDelayInSeconds: int = ...,
AutoGranted: bool = ...,
AutoGrantedValue: int = ...,
) -> UpdateQualificationTypeResponseTypeDef: # (2)
...
# update_qualification_type method usage example with argument unpacking
kwargs: UpdateQualificationTypeRequestRequestTypeDef = { # (1)
"QualificationTypeId": ...,
}
parent.update_qualification_type(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("mturk").get_paginator
method with overloads.
client.get_paginator("list_assignments_for_hit")
-> ListAssignmentsForHITPaginatorclient.get_paginator("list_bonus_payments")
-> ListBonusPaymentsPaginatorclient.get_paginator("list_hits_for_qualification_type")
-> ListHITsForQualificationTypePaginatorclient.get_paginator("list_hits")
-> ListHITsPaginatorclient.get_paginator("list_qualification_requests")
-> ListQualificationRequestsPaginatorclient.get_paginator("list_qualification_types")
-> ListQualificationTypesPaginatorclient.get_paginator("list_reviewable_hits")
-> ListReviewableHITsPaginatorclient.get_paginator("list_worker_blocks")
-> ListWorkerBlocksPaginatorclient.get_paginator("list_workers_with_qualification_type")
-> ListWorkersWithQualificationTypePaginator