Class: Aws::SimpleDB::Types::SelectResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::SelectResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simpledb/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::Item>
A list of items that match the select expression.
-
#next_token ⇒ String
An opaque token indicating that more items than ‘MaxNumberOfItems` were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.
Instance Attribute Details
#items ⇒ Array<Types::Item>
A list of items that match the select expression.
539 540 541 542 543 544 |
# File 'lib/aws-sdk-simpledb/types.rb', line 539 class SelectResult < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An opaque token indicating that more items than ‘MaxNumberOfItems` were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.
539 540 541 542 543 544 |
# File 'lib/aws-sdk-simpledb/types.rb', line 539 class SelectResult < Struct.new( :items, :next_token) SENSITIVE = [] include Aws::Structure end |