Package | Description |
---|---|
com.amazonaws.services.dynamodb.datamodeling |
Modifier and Type | Field and Description |
---|---|
static DynamoDBMapperConfig |
DynamoDBMapperConfig.DEFAULT
Deprecated.
Default configuration uses UPDATE behavior for saves and EVENTUALly
consistent reads, with no table name override.
|
Modifier and Type | Method and Description |
---|---|
Map<String,List<Object>> |
DynamoDBMapper.batchLoad(Map<Class<?>,List<KeyPair>> itemsToGet,
DynamoDBMapperConfig config)
Deprecated.
Retrieves the attributes for multiple items from multiple tables using
their primary keys.
|
void |
DynamoDBMapper.batchWrite(List<? extends Object> objectsToWrite,
List<? extends Object> objectsToDelete,
DynamoDBMapperConfig config)
Deprecated.
Saves and deletes the objects given using one or more calls to the
AmazonDynamoDB.batchWriteItem(BatchWriteItemRequest) API. |
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Evaluates the specified query expression and returns the count of
matching items, without returning any of the actual item data.
|
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Evaluates the specified scan expression and returns the count of matching
items, without returning any of the actual item data.
|
void |
DynamoDBMapper.delete(Object object,
DynamoDBMapperConfig config)
Deprecated.
Deletes the given object from its DynamoDB table.
|
<T> T |
DynamoDBMapper.load(Class<T> clazz,
Object hashKey,
DynamoDBMapperConfig config)
Deprecated.
Loads an object with the hash key given and a configuration override.
|
<T> T |
DynamoDBMapper.load(Class<T> clazz,
Object hashKey,
Object rangeKey,
DynamoDBMapperConfig config)
Deprecated.
Returns an object with the given hash key, or null if no such object
exists.
|
<T> PaginatedQueryList<T> |
DynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Queries an Amazon DynamoDB table and returns the matching results as an
unmodifiable list of instantiated objects.
|
<T> QueryResultPage<T> |
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Queries an Amazon DynamoDB table and returns a single page of matching
results.
|
<T> void |
DynamoDBMapper.save(T object,
DynamoDBMapperConfig config)
Deprecated.
Saves an item in DynamoDB.
|
<T> PaginatedScanList<T> |
DynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Scans through an Amazon DynamoDB table and returns the matching results as
an unmodifiable list of instantiated objects.
|
<T> ScanResultPage<T> |
DynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Scans through an Amazon DynamoDB table and returns a single page of matching
results.
|
Constructor and Description |
---|
DynamoDBMapper(AmazonDynamoDB dynamoDB,
DynamoDBMapperConfig config)
Deprecated.
Constructs a new mapper with the service object and configuration given.
|
Copyright © 2014. All rights reserved.