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

Packages that use ScanResult
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 ScanResult in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 that return ScanResult
 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.
 ScanResult AmazonDynamoDBClient.scan(String tableName, List<String> attributesToGet)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(String tableName, List<String> attributesToGet)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDBClient.scan(String tableName, List<String> attributesToGet, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(String tableName, List<String> attributesToGet, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDBClient.scan(String tableName, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(String tableName, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 

Methods in com.amazonaws.services.dynamodbv2 that return types with arguments of type ScanResult
 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 ScanResult
 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 ScanResult in com.amazonaws.services.dynamodbv2.datamodeling
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling that return types with arguments of type ScanResult
 List<ScanResult> ParallelScanTask.getNextBatchOfScanResults()
           
 

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

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

Methods in com.amazonaws.services.dynamodbv2.model that return ScanResult
 ScanResult ScanResult.addLastEvaluatedKeyEntry(String key, AttributeValue value)
          The primary key of the item where the operation stopped, inclusive of the previous result set.
 ScanResult ScanResult.clearLastEvaluatedKeyEntries()
          Removes all the entries added into LastEvaluatedKey.
 ScanResult ScanResult.withConsumedCapacity(ConsumedCapacity consumedCapacity)
          Represents the capacity units consumed by an operation.
 ScanResult ScanResult.withCount(Integer count)
          The number of items in the response.
 ScanResult ScanResult.withItems(Collection<Map<String,AttributeValue>> items)
          An array of item attributes that match the scan criteria.
 ScanResult ScanResult.withItems(Map<String,AttributeValue>... items)
          An array of item attributes that match the scan criteria.
 ScanResult ScanResult.withLastEvaluatedKey(Map<String,AttributeValue> lastEvaluatedKey)
          The primary key of the item where the operation stopped, inclusive of the previous result set.
 ScanResult ScanResult.withScannedCount(Integer scannedCount)
          The number of items evaluated, before any ScanFilter is applied.
 



Copyright © 2016. All rights reserved.