Values.SelectResultSourceThe Select operation returns a set of attributes for ItemNames that match the select expression. Select is similar to the standard SQL SELECT statement. 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, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate NextToken so the client can access the next page of results. For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide.
type selectResult = {items : ItemList.t option;A list of items that match the select expression.
*)nextToken : String_.t option;An opaque token indicating that more items than MaxNumberOfItems were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.
*)}type error = [ | `InvalidNextToken of InvalidNextToken.t| `InvalidNumberPredicates of InvalidNumberPredicates.t| `InvalidNumberValueTests of InvalidNumberValueTests.t| `InvalidParameterValue of InvalidParameterValue.t| `InvalidQueryExpression of InvalidQueryExpression.t| `MissingParameter of MissingParameter.t| `NoSuchDomain of NoSuchDomain.t| `RequestTimeout of RequestTimeout.t| `TooManyRequestedAttributes of TooManyRequestedAttributes.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `InvalidNextToken of InvalidNextToken.t
| `InvalidNumberPredicates of InvalidNumberPredicates.t
| `InvalidNumberValueTests of InvalidNumberValueTests.t
| `InvalidParameterValue of InvalidParameterValue.t
| `InvalidQueryExpression of InvalidQueryExpression.t
| `MissingParameter of MissingParameter.t
| `NoSuchDomain of NoSuchDomain.t
| `RequestTimeout of RequestTimeout.t
| `TooManyRequestedAttributes of TooManyRequestedAttributes.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `InvalidNextToken of InvalidNextToken.t
| `InvalidNumberPredicates of InvalidNumberPredicates.t
| `InvalidNumberValueTests of InvalidNumberValueTests.t
| `InvalidParameterValue of InvalidParameterValue.t
| `InvalidQueryExpression of InvalidQueryExpression.t
| `MissingParameter of MissingParameter.t
| `NoSuchDomain of NoSuchDomain.t
| `RequestTimeout of RequestTimeout.t
| `TooManyRequestedAttributes of TooManyRequestedAttributes.t
| `Unknown_operation_error of string * string option ]