|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DynamoDBMapperConfig | |
---|---|
com.amazonaws.services.dynamodb.datamodeling |
Uses of DynamoDBMapperConfig in com.amazonaws.services.dynamodb.datamodeling |
---|
Fields in com.amazonaws.services.dynamodb.datamodeling declared as DynamoDBMapperConfig | |
---|---|
static DynamoDBMapperConfig |
DynamoDBMapperConfig.DEFAULT
Deprecated. Default configuration uses UPDATE behavior for saves and EVENTUALly consistent reads, with no table name override. |
Methods in com.amazonaws.services.dynamodb.datamodeling with parameters of type DynamoDBMapperConfig | ||
---|---|---|
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. |
|
|
DynamoDBMapper.load(Class<T> clazz,
Object hashKey,
DynamoDBMapperConfig config)
Deprecated. Loads an object with the hash key given and a configuration override. |
|
|
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. |
|
|
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. |
|
|
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated. Queries an Amazon DynamoDB table and returns a single page of matching results. |
|
|
DynamoDBMapper.save(T object,
DynamoDBMapperConfig config)
Deprecated. Saves an item in DynamoDB. |
|
|
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. |
|
|
DynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated. Scans through an Amazon DynamoDB table and returns a single page of matching results. |
Constructors in com.amazonaws.services.dynamodb.datamodeling with parameters of type DynamoDBMapperConfig | |
---|---|
DynamoDBMapper(AmazonDynamoDB dynamoDB,
DynamoDBMapperConfig config)
Deprecated. Constructs a new mapper with the service object and configuration given. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |