CopyableBuilder<SelectRequest.Builder,SelectRequest>
, SdkBuilder<SelectRequest.Builder,SelectRequest>
public static interface SelectRequest.Builder extends CopyableBuilder<SelectRequest.Builder,SelectRequest>
Modifier and Type | Method | Description |
---|---|---|
SelectRequest.Builder |
consistentRead(Boolean consistentRead) |
Determines whether or not strong consistency should be enforced when data is read from SimpleDB.
|
SelectRequest.Builder |
nextToken(String nextToken) |
A string informing Amazon SimpleDB where to start the next list of
ItemNames . |
SelectRequest.Builder |
selectExpression(String selectExpression) |
The expression used to query the domain.
|
copy
apply, build
SelectRequest.Builder selectExpression(String selectExpression)
selectExpression
- The expression used to query the domain.SelectRequest.Builder nextToken(String nextToken)
ItemNames
.nextToken
- A string informing Amazon SimpleDB where to start the next list of ItemNames
.SelectRequest.Builder consistentRead(Boolean consistentRead)
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.consistentRead
- 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.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.