Class: Aws::MTurk::Types::CreateAdditionalAssignmentsForHITRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::CreateAdditionalAssignmentsForHITRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hit_id ⇒ String
The ID of the HIT to extend.
-
#number_of_additional_assignments ⇒ Integer
The number of additional assignments to request for this HIT.
-
#unique_request_token ⇒ String
A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times.
Instance Attribute Details
#hit_id ⇒ String
The ID of the HIT to extend.
247 248 249 250 251 252 253 |
# File 'lib/aws-sdk-mturk/types.rb', line 247 class CreateAdditionalAssignmentsForHITRequest < Struct.new( :hit_id, :number_of_additional_assignments, :unique_request_token) SENSITIVE = [] include Aws::Structure end |
#number_of_additional_assignments ⇒ Integer
The number of additional assignments to request for this HIT.
247 248 249 250 251 252 253 |
# File 'lib/aws-sdk-mturk/types.rb', line 247 class CreateAdditionalAssignmentsForHITRequest < Struct.new( :hit_id, :number_of_additional_assignments, :unique_request_token) SENSITIVE = [] include Aws::Structure end |
#unique_request_token ⇒ String
A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same ‘UniqueRequestToken`, subsequent calls will return an error with a message containing the request ID.
247 248 249 250 251 252 253 |
# File 'lib/aws-sdk-mturk/types.rb', line 247 class CreateAdditionalAssignmentsForHITRequest < Struct.new( :hit_id, :number_of_additional_assignments, :unique_request_token) SENSITIVE = [] include Aws::Structure end |