public static interface SelectRequest.Builder extends SimpleDbRequest.Builder, CopyableBuilder<SelectRequest.Builder,SelectRequest>
Modifier and Type | Method and 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 |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
SelectRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
SelectRequest.Builder |
selectExpression(String selectExpression)
The expression used to query the domain.
|
build
overrideConfiguration
copy
applyMutation, 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.SelectRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.SelectRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.