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 |
---|---|
AttributeValue |
DynamoDBQueryExpression.getHashKeyValue()
Deprecated.
Returns the hash key value to match.
|
Modifier and Type | Method and Description |
---|---|
protected Map<String,AttributeValue> |
DynamoDBMapper.transformAttributes(Class<?> clazz,
Map<String,AttributeValue> attributeValues)
Deprecated.
By default, just calls
DynamoDBMapper.transformAttributes(String, String, Map) . |
protected Map<String,AttributeValue> |
DynamoDBMapper.transformAttributes(String hashKey,
String rangeKey,
Map<String,AttributeValue> attributeValues)
Deprecated.
Transform attribute values prior to storing in DynamoDB.
|
protected Map<String,AttributeValue> |
DynamoDBMapper.untransformAttributes(Class<?> clazz,
Map<String,AttributeValue> attributeValues)
Deprecated.
By default, just calls
DynamoDBMapper.untransformAttributes(String, String, Map) . |
protected Map<String,AttributeValue> |
DynamoDBMapper.untransformAttributes(String hashKey,
String rangeKey,
Map<String,AttributeValue> attributeValues)
Deprecated.
Transforms the attribute values after loading from DynamoDb.
|
Modifier and Type | Method and Description |
---|---|
void |
DynamoDBQueryExpression.setHashKeyValue(AttributeValue hashKeyValue)
Deprecated.
Sets the hash key value for this query to match.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withHashKeyValue(AttributeValue hashKeyValue)
Deprecated.
Sets the hash key value for this query to match and returns a pointer to
this object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
DynamoDBMapper.marshallIntoObject(Class<T> clazz,
Map<String,AttributeValue> itemAttributes)
Deprecated.
Creates and fills in the attributes on an instance of the class given
with the attributes given.
|
<T> List<T> |
DynamoDBMapper.marshallIntoObjects(Class<T> clazz,
List<Map<String,AttributeValue>> itemAttributes)
Deprecated.
Marshalls the list of item attributes into objects of type clazz
|
protected Map<String,AttributeValue> |
DynamoDBMapper.transformAttributes(Class<?> clazz,
Map<String,AttributeValue> attributeValues)
Deprecated.
By default, just calls
DynamoDBMapper.transformAttributes(String, String, Map) . |
protected Map<String,AttributeValue> |
DynamoDBMapper.transformAttributes(String hashKey,
String rangeKey,
Map<String,AttributeValue> attributeValues)
Deprecated.
Transform attribute values prior to storing in DynamoDB.
|
protected Map<String,AttributeValue> |
DynamoDBMapper.untransformAttributes(Class<?> clazz,
Map<String,AttributeValue> attributeValues)
Deprecated.
By default, just calls
DynamoDBMapper.untransformAttributes(String, String, Map) . |
protected Map<String,AttributeValue> |
DynamoDBMapper.untransformAttributes(String hashKey,
String rangeKey,
Map<String,AttributeValue> attributeValues)
Deprecated.
Transforms the attribute values after loading from DynamoDb.
|
Constructor and Description |
---|
DynamoDBQueryExpression(AttributeValue hashKeyValue)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
AttributeValue |
Key.getHashKeyElement()
Deprecated.
A hash key element is treated as the primary key, and can be a string
or a number.
|
AttributeValue |
QueryRequest.getHashKeyValue()
Deprecated.
Attribute value of the hash component of the composite primary key.
|
AttributeValue |
Key.getRangeKeyElement()
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.
|
AttributeValue |
AttributeValueUpdate.getValue()
Deprecated.
AttributeValue can be
String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
AttributeValue |
ExpectedAttributeValue.getValue()
Deprecated.
Specify whether or not a value already exists and has a specific
content for the attribute name-value pair.
|
AttributeValue |
AttributeValue.withB(ByteBuffer b)
Deprecated.
Binary attributes are sequences of unsigned bytes.
|
AttributeValue |
AttributeValue.withBS(ByteBuffer... bS)
Deprecated.
A set of binary attributes.
|
AttributeValue |
AttributeValue.withBS(Collection<ByteBuffer> bS)
Deprecated.
A set of binary attributes.
|
AttributeValue |
AttributeValue.withN(String n)
Deprecated.
Numbers are positive or negative exact-value decimals and integers.
|
AttributeValue |
AttributeValue.withNS(Collection<String> nS)
Deprecated.
A set of numbers.
|
AttributeValue |
AttributeValue.withNS(String... nS)
Deprecated.
A set of numbers.
|
AttributeValue |
AttributeValue.withS(String s)
Deprecated.
Strings are Unicode with UTF-8 binary encoding.
|
AttributeValue |
AttributeValue.withSS(Collection<String> sS)
Deprecated.
A set of strings.
|
AttributeValue |
AttributeValue.withSS(String... sS)
Deprecated.
A set of strings.
|
Modifier and Type | Method and Description |
---|---|
Map<String,AttributeValue> |
PutItemResult.getAttributes()
Deprecated.
Attribute values before the put operation, but only if the
ReturnValues parameter is specified as
ALL_OLD in the request. |
Map<String,AttributeValue> |
UpdateItemResult.getAttributes()
Deprecated.
A map of attribute name-value pairs, but only if the
ReturnValues parameter is specified as something other
than NONE in the request. |
Map<String,AttributeValue> |
DeleteItemResult.getAttributes()
Deprecated.
If the
ReturnValues parameter is provided as
ALL_OLD in the request, Amazon DynamoDB returns an array
of attribute name-value pairs (essentially, the deleted item). |
List<AttributeValue> |
Condition.getAttributeValueList()
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
Map<String,AttributeValue> |
PutItemRequest.getItem()
Deprecated.
A map of the attributes for the item, and must include the primary key
values that define the item.
|
Map<String,AttributeValue> |
GetItemResult.getItem()
Deprecated.
Contains the requested attributes.
|
Map<String,AttributeValue> |
PutRequest.getItem()
Deprecated.
The item to put
|
List<Map<String,AttributeValue>> |
BatchResponse.getItems()
Deprecated.
Returns the value of the Items property for this object.
|
List<Map<String,AttributeValue>> |
QueryResult.getItems()
Deprecated.
Returns the value of the Items property for this object.
|
List<Map<String,AttributeValue>> |
ScanResult.getItems()
Deprecated.
Returns the value of the Items property for this object.
|
Modifier and Type | Method and Description |
---|---|
void |
Key.setHashKeyElement(AttributeValue hashKeyElement)
Deprecated.
A hash key element is treated as the primary key, and can be a string
or a number.
|
void |
QueryRequest.setHashKeyValue(AttributeValue hashKeyValue)
Deprecated.
Attribute value of the hash component of the composite primary key.
|
void |
Key.setRangeKeyElement(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.
|
void |
AttributeValueUpdate.setValue(AttributeValue value)
Deprecated.
AttributeValue can be
String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
void |
ExpectedAttributeValue.setValue(AttributeValue value)
Deprecated.
Specify whether or not a value already exists and has a specific
content for the attribute name-value pair.
|
Condition |
Condition.withAttributeValueList(AttributeValue... attributeValueList)
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
Key |
Key.withHashKeyElement(AttributeValue hashKeyElement)
Deprecated.
A hash key element is treated as the primary key, and can be a string
or a number.
|
QueryRequest |
QueryRequest.withHashKeyValue(AttributeValue hashKeyValue)
Deprecated.
Attribute value of the hash component of the composite primary key.
|
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.
|
AttributeValueUpdate |
AttributeValueUpdate.withValue(AttributeValue value)
Deprecated.
AttributeValue can be
String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
ExpectedAttributeValue |
ExpectedAttributeValue.withValue(AttributeValue value)
Deprecated.
Specify whether or not a value already exists and has a specific
content for the attribute name-value pair.
|
Modifier and Type | Method and Description |
---|---|
void |
PutItemResult.setAttributes(Map<String,AttributeValue> attributes)
Deprecated.
Attribute values before the put operation, but only if the
ReturnValues parameter is specified as
ALL_OLD in the request. |
void |
UpdateItemResult.setAttributes(Map<String,AttributeValue> attributes)
Deprecated.
A map of attribute name-value pairs, but only if the
ReturnValues parameter is specified as something other
than NONE in the request. |
void |
DeleteItemResult.setAttributes(Map<String,AttributeValue> attributes)
Deprecated.
If the
ReturnValues parameter is provided as
ALL_OLD in the request, Amazon DynamoDB returns an array
of attribute name-value pairs (essentially, the deleted item). |
void |
Condition.setAttributeValueList(Collection<AttributeValue> attributeValueList)
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
void |
PutItemRequest.setItem(Map<String,AttributeValue> item)
Deprecated.
A map of the attributes for the item, and must include the primary key
values that define the item.
|
void |
GetItemResult.setItem(Map<String,AttributeValue> item)
Deprecated.
Contains the requested attributes.
|
void |
PutRequest.setItem(Map<String,AttributeValue> item)
Deprecated.
The item to put
|
void |
BatchResponse.setItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
void |
QueryResult.setItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
void |
ScanResult.setItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
PutItemResult |
PutItemResult.withAttributes(Map<String,AttributeValue> attributes)
Deprecated.
Attribute values before the put operation, but only if the
ReturnValues parameter is specified as
ALL_OLD in the request. |
UpdateItemResult |
UpdateItemResult.withAttributes(Map<String,AttributeValue> attributes)
Deprecated.
A map of attribute name-value pairs, but only if the
ReturnValues parameter is specified as something other
than NONE in the request. |
DeleteItemResult |
DeleteItemResult.withAttributes(Map<String,AttributeValue> attributes)
Deprecated.
If the
ReturnValues parameter is provided as
ALL_OLD in the request, Amazon DynamoDB returns an array
of attribute name-value pairs (essentially, the deleted item). |
Condition |
Condition.withAttributeValueList(Collection<AttributeValue> attributeValueList)
Deprecated.
A list of attribute values to be used with a comparison operator for a
scan or query operation.
|
PutItemRequest |
PutItemRequest.withItem(Map<String,AttributeValue> item)
Deprecated.
A map of the attributes for the item, and must include the primary key
values that define the item.
|
GetItemResult |
GetItemResult.withItem(Map<String,AttributeValue> item)
Deprecated.
Contains the requested attributes.
|
PutRequest |
PutRequest.withItem(Map<String,AttributeValue> item)
Deprecated.
The item to put
|
BatchResponse |
BatchResponse.withItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
QueryResult |
QueryResult.withItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
ScanResult |
ScanResult.withItems(Collection<Map<String,AttributeValue>> items)
Deprecated.
Sets the value of the Items property for this object.
|
Constructor and Description |
---|
AttributeValueUpdate(AttributeValue value,
AttributeAction action)
Deprecated.
Constructs a new AttributeValueUpdate object.
|
AttributeValueUpdate(AttributeValue value,
String action)
Deprecated.
Constructs a new AttributeValueUpdate object.
|
ExpectedAttributeValue(AttributeValue value)
Deprecated.
Constructs a new ExpectedAttributeValue object.
|
Key(AttributeValue hashKeyElement)
Deprecated.
Constructs a new Key object.
|
Key(AttributeValue hashKeyElement,
AttributeValue rangeKeyElement)
Deprecated.
Constructs a new Key object.
|
QueryRequest(String tableName,
AttributeValue hashKeyValue)
Deprecated.
Constructs a new QueryRequest object.
|
Constructor and Description |
---|
PutItemRequest(String tableName,
Map<String,AttributeValue> item)
Deprecated.
Constructs a new PutItemRequest object.
|
Copyright © 2014. All rights reserved.