Class: Aws::MTurk::Types::ListQualificationRequestsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mturk/types.rb

Overview

Note:

When making an API call, you may pass ListQualificationRequestsRequest data as a hash:

{
  qualification_type_id: "EntityId",
  next_token: "PaginationToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return in a single call.

Returns:

  • (Integer)


1661
1662
1663
1664
1665
1666
# File 'lib/aws-sdk-mturk/types.rb', line 1661

class ListQualificationRequestsRequest < Struct.new(
  :qualification_type_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

Returns:

  • (String)


1661
1662
1663
1664
1665
1666
# File 'lib/aws-sdk-mturk/types.rb', line 1661

class ListQualificationRequestsRequest < Struct.new(
  :qualification_type_id,
  :next_token,
  :max_results)
  include Aws::Structure
end

#qualification_type_idString

The ID of the QualificationType.

Returns:

  • (String)


1661
1662
1663
1664
1665
1666
# File 'lib/aws-sdk-mturk/types.rb', line 1661

class ListQualificationRequestsRequest < Struct.new(
  :qualification_type_id,
  :next_token,
  :max_results)
  include Aws::Structure
end