Uses of Class
com.amazonaws.services.dynamodbv2.model.ScanRequest

Packages that use ScanRequest
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of ScanRequest in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 with parameters of type ScanRequest
 ScanResult AmazonDynamoDBClient.scan(ScanRequest scanRequest)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(ScanRequest scanRequest)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 Future<ScanResult> AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 Future<ScanResult> AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 Future<ScanResult> AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest, AsyncHandler<ScanRequest,ScanResult> asyncHandler)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 Future<ScanResult> AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest, AsyncHandler<ScanRequest,ScanResult> asyncHandler)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type ScanRequest
 Future<ScanResult> AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest, AsyncHandler<ScanRequest,ScanResult> asyncHandler)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 Future<ScanResult> AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest, AsyncHandler<ScanRequest,ScanResult> asyncHandler)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 

Uses of ScanRequest in com.amazonaws.services.dynamodbv2.datamodeling
 

Constructors in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type ScanRequest
PaginatedScanList(DynamoDBMapper mapper, Class<T> clazz, AmazonDynamoDB dynamo, ScanRequest scanRequest, ScanResult scanResult, DynamoDBMapperConfig.PaginationLoadingStrategy paginationLoadingStrategy, DynamoDBMapperConfig config)
           
 

Constructor parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type ScanRequest
ParallelScanTask(DynamoDBMapper mapper, AmazonDynamoDB dynamo, List<ScanRequest> parallelScanRequests)
           
 

Uses of ScanRequest in com.amazonaws.services.dynamodbv2.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return ScanRequest
 ScanRequest ScanRequest.addExclusiveStartKeyEntry(String key, AttributeValue value)
          The primary key of the first item that this operation will evaluate.
 ScanRequest ScanRequest.addScanFilterEntry(String key, Condition value)
          Evaluates the scan results and returns only the desired values.
 ScanRequest ScanRequest.clearExclusiveStartKeyEntries()
          Removes all the entries added into ExclusiveStartKey.
 ScanRequest ScanRequest.clearScanFilterEntries()
          Removes all the entries added into ScanFilter.
 ScanRequest ScanRequest.withAttributesToGet(Collection<String> attributesToGet)
          The names of one or more attributes to retrieve.
 ScanRequest ScanRequest.withAttributesToGet(String... attributesToGet)
          The names of one or more attributes to retrieve.
 ScanRequest ScanRequest.withConditionalOperator(ConditionalOperator conditionalOperator)
          A logical operator to apply to the conditions in the ScanFilter map:
 ScanRequest ScanRequest.withConditionalOperator(String conditionalOperator)
          A logical operator to apply to the conditions in the ScanFilter map:
 ScanRequest ScanRequest.withExclusiveStartKey(Map.Entry<String,AttributeValue> hashKey, Map.Entry<String,AttributeValue> rangeKey)
          The primary key of the first item that this operation will evaluate.
 ScanRequest ScanRequest.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
          The primary key of the first item that this operation will evaluate.
 ScanRequest ScanRequest.withLimit(Integer limit)
          The maximum number of items to evaluate (not necessarily the number of matching items).
 ScanRequest ScanRequest.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 ScanRequest ScanRequest.withReturnConsumedCapacity(String returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 ScanRequest ScanRequest.withScanFilter(Map<String,Condition> scanFilter)
          Evaluates the scan results and returns only the desired values.
 ScanRequest ScanRequest.withSegment(Integer segment)
          For a parallel Scan request, Segment identifies an individual segment to be scanned by an application worker.
 ScanRequest ScanRequest.withSelect(Select select)
          The attributes to be returned in the result.
 ScanRequest ScanRequest.withSelect(String select)
          The attributes to be returned in the result.
 ScanRequest ScanRequest.withTableName(String tableName)
          The name of the table containing the requested items.
 ScanRequest ScanRequest.withTotalSegments(Integer totalSegments)
          For a parallel Scan request, TotalSegments represents the total number of segments into which the Scan operation will be divided.
 



Copyright © 2016. All rights reserved.