You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MTurk::Types::CreateAdditionalAssignmentsForHITRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateAdditionalAssignmentsForHITRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  hit_id: "EntityId", # required
  number_of_additional_assignments: 1, # required
  unique_request_token: "IdempotencyToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#hit_idString

The ID of the HIT to extend.

Returns:

  • (String)

    The ID of the HIT to extend.

#number_of_additional_assignmentsInteger

The number of additional assignments to request for this HIT.

Returns:

  • (Integer)

    The number of additional assignments to request for this HIT.

#unique_request_tokenString

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.

Returns:

  • (String)

    A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times.