The Select operation returns a set of Attributes for ItemNames that match the select expression. The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, even if you ask to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate next token so you can get the next page of results. Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial and empty result sets contains a next token which allow you to continue the operation from where it left off. Responses larger than one megabyte return a partial result set.

Namespace: Amazon.SimpleDB.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class SelectResult
Public Class SelectResult
public ref class SelectResult

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
SelectResult()()()()
Initializes a new instance of the SelectResult class
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
IsSetItem()()()()
Checks if Item property is set
IsSetNextToken()()()()
Checks if NextToken property is set
Item
Gets and sets the Item property. Items represent individual objects that contain one or more attribute name-value pairs.
NextToken
Gets and sets the NextToken property. An opaque token indicating that more than MaxNumberOfItems matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithItem(array<Item>[]()[][])
Sets the Item property
WithNextToken(String)
Sets the NextToken property

Inheritance Hierarchy

System..::..Object
  Amazon.SimpleDB.Model..::..SelectResult

See Also