Package | Description |
---|---|
com.amazonaws.services.dynamodb.datamodeling | |
com.amazonaws.services.dynamodb.model |
Classes modeling the various types represented by AmazonDynamoDB.
|
Modifier and Type | Method and Description |
---|---|
Key |
DynamoDBQueryExpression.getExclusiveStartKey()
Deprecated.
Returns the exclusive start key for this query.
|
Key |
DynamoDBScanExpression.getExclusiveStartKey()
Deprecated.
Returns the exclusive start key for this scan.
|
Key |
QueryResultPage.getLastEvaluatedKey()
Deprecated.
Returns the last evaluated key, which can be used as the
exclusiveStartKey to fetch the next page of results.
|
Key |
ScanResultPage.getLastEvaluatedKey()
Deprecated.
Returns the last evaluated key, which can be used as the
exclusiveStartKey to fetch the next page of results.
|
Modifier and Type | Method and Description |
---|---|
void |
DynamoDBQueryExpression.setExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this query.
|
void |
DynamoDBScanExpression.setExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this scan.
|
void |
QueryResultPage.setLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
|
void |
ScanResultPage.setLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this query and returns a pointer to this
object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this scan and returns a pointer to this
object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
Key |
QueryRequest.getExclusiveStartKey()
Deprecated.
Primary key of the item from which to continue an earlier query.
|
Key |
ScanRequest.getExclusiveStartKey()
Deprecated.
Primary key of the item from which to continue an earlier scan.
|
Key |
DeleteItemRequest.getKey()
Deprecated.
The primary key that uniquely identifies each item in a table.
|
Key |
DeleteRequest.getKey()
Deprecated.
The item's key to be delete
|
Key |
UpdateItemRequest.getKey()
Deprecated.
The primary key that uniquely identifies each item in a table.
|
Key |
GetItemRequest.getKey()
Deprecated.
The primary key that uniquely identifies each item in a table.
|
Key |
QueryResult.getLastEvaluatedKey()
Deprecated.
Primary key of the item where the query operation stopped, inclusive
of the previous result set.
|
Key |
ScanResult.getLastEvaluatedKey()
Deprecated.
Primary key of the item where the scan operation stopped.
|
Key |
Key.withHashKeyElement(AttributeValue hashKeyElement)
Deprecated.
A hash key element is treated as the primary key, and can be a string
or a number.
|
Key |
Key.withRangeKeyElement(AttributeValue rangeKeyElement)
Deprecated.
A range key element is treated as a secondary key (used in conjunction
with the primary key), and can be a string or a number, and is only
used for hash-and-range primary keys.
|
Modifier and Type | Method and Description |
---|---|
List<Key> |
KeysAndAttributes.getKeys()
Deprecated.
Returns the value of the Keys property for this object.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryRequest.setExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Primary key of the item from which to continue an earlier query.
|
void |
ScanRequest.setExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Primary key of the item from which to continue an earlier scan.
|
void |
DeleteItemRequest.setKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
void |
DeleteRequest.setKey(Key key)
Deprecated.
The item's key to be delete
|
void |
UpdateItemRequest.setKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
void |
GetItemRequest.setKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
void |
QueryResult.setLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
Primary key of the item where the query operation stopped, inclusive
of the previous result set.
|
void |
ScanResult.setLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
Primary key of the item where the scan operation stopped.
|
QueryRequest |
QueryRequest.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Primary key of the item from which to continue an earlier query.
|
ScanRequest |
ScanRequest.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Primary key of the item from which to continue an earlier scan.
|
DeleteItemRequest |
DeleteItemRequest.withKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
DeleteRequest |
DeleteRequest.withKey(Key key)
Deprecated.
The item's key to be delete
|
UpdateItemRequest |
UpdateItemRequest.withKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
GetItemRequest |
GetItemRequest.withKey(Key key)
Deprecated.
The primary key that uniquely identifies each item in a table.
|
KeysAndAttributes |
KeysAndAttributes.withKeys(Key... keys)
Deprecated.
Sets the value of the Keys property for this object.
|
QueryResult |
QueryResult.withLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
Primary key of the item where the query operation stopped, inclusive
of the previous result set.
|
ScanResult |
ScanResult.withLastEvaluatedKey(Key lastEvaluatedKey)
Deprecated.
Primary key of the item where the scan operation stopped.
|
Modifier and Type | Method and Description |
---|---|
void |
KeysAndAttributes.setKeys(Collection<Key> keys)
Deprecated.
Sets the value of the Keys property for this object.
|
KeysAndAttributes |
KeysAndAttributes.withKeys(Collection<Key> keys)
Deprecated.
Sets the value of the Keys property for this object.
|
Constructor and Description |
---|
DeleteItemRequest(String tableName,
Key key)
Deprecated.
Constructs a new DeleteItemRequest object.
|
GetItemRequest(String tableName,
Key key)
Deprecated.
Constructs a new GetItemRequest object.
|
UpdateItemRequest(String tableName,
Key key,
Map<String,AttributeValueUpdate> attributeUpdates)
Deprecated.
Constructs a new UpdateItemRequest object.
|
Copyright © 2014. All rights reserved.