Class: Aws::MTurk::Types::WorkerBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::WorkerBlock
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
The WorkerBlock data structure represents a Worker who has been blocked. It has two elements: the WorkerId and the Reason for the block.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reason ⇒ String
A message explaining the reason the Worker was blocked.
-
#worker_id ⇒ String
The ID of the Worker who accepted the HIT.
Instance Attribute Details
#reason ⇒ String
A message explaining the reason the Worker was blocked.
2703 2704 2705 2706 2707 2708 |
# File 'lib/aws-sdk-mturk/types.rb', line 2703 class WorkerBlock < Struct.new( :worker_id, :reason) SENSITIVE = [] include Aws::Structure end |
#worker_id ⇒ String
The ID of the Worker who accepted the HIT.
2703 2704 2705 2706 2707 2708 |
# File 'lib/aws-sdk-mturk/types.rb', line 2703 class WorkerBlock < Struct.new( :worker_id, :reason) SENSITIVE = [] include Aws::Structure end |