You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SimpleDB::Types::SelectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::SelectRequest
- Defined in:
- (unknown)
Overview
When passing SelectRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
select_expression: "String", # required
next_token: "String",
consistent_read: false,
}
Instance Attribute Summary collapse
-
#consistent_read ⇒ Boolean
Determines whether or not strong consistency should be enforced when data is read from SimpleDB.
-
#next_token ⇒ String
A string informing Amazon SimpleDB where to start the next list of
ItemNames
. -
#select_expression ⇒ String
The expression used to query the domain.
Instance Attribute Details
#consistent_read ⇒ Boolean
Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true
, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.
#next_token ⇒ String
A string informing Amazon SimpleDB where to start the next list of ItemNames
.
#select_expression ⇒ String
The expression used to query the domain.