|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AttributeValue | |
---|---|
com.amazonaws.services.dynamodb.datamodeling | |
com.amazonaws.services.dynamodb.model | Classes modeling the various types represented by AmazonDynamoDB. |
Uses of AttributeValue in com.amazonaws.services.dynamodb.datamodeling |
---|
Methods in com.amazonaws.services.dynamodb.datamodeling that return AttributeValue | |
---|---|
AttributeValue |
DynamoDBQueryExpression.getHashKeyValue()
Deprecated. Returns the hash key value to match. |
Methods in com.amazonaws.services.dynamodb.datamodeling that return types with arguments of type AttributeValue | |
---|---|
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. |
Methods in com.amazonaws.services.dynamodb.datamodeling with parameters of type AttributeValue | |
---|---|
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. |
Method parameters in com.amazonaws.services.dynamodb.datamodeling with type arguments of type AttributeValue | ||
---|---|---|
|
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. |
|
|
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. |
Constructors in com.amazonaws.services.dynamodb.datamodeling with parameters of type AttributeValue | |
---|---|
DynamoDBQueryExpression(AttributeValue hashKeyValue)
Deprecated. |
Uses of AttributeValue in com.amazonaws.services.dynamodb.model |
---|
Methods in com.amazonaws.services.dynamodb.model that return AttributeValue | |
---|---|
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 |
ExpectedAttributeValue.getValue()
Deprecated. Specify whether or not a value already exists and has a specific content for the attribute name-value pair. |
AttributeValue |
AttributeValueUpdate.getValue()
Deprecated. AttributeValue can be String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
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. |
Methods in com.amazonaws.services.dynamodb.model that return types with arguments of type AttributeValue | |
---|---|
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> |
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> |
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> |
PutRequest.getItem()
Deprecated. The item to put |
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. |
List<Map<String,AttributeValue>> |
ScanResult.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>> |
BatchResponse.getItems()
Deprecated. Returns the value of the Items property for this object. |
Methods in com.amazonaws.services.dynamodb.model with parameters of type AttributeValue | |
---|---|
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 |
ExpectedAttributeValue.setValue(AttributeValue value)
Deprecated. Specify whether or not a value already exists and has a specific content for the attribute name-value pair. |
void |
AttributeValueUpdate.setValue(AttributeValue value)
Deprecated. AttributeValue can be String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
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. |
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. |
AttributeValueUpdate |
AttributeValueUpdate.withValue(AttributeValue value)
Deprecated. AttributeValue can be String , Number ,
Binary , StringSet , NumberSet ,
BinarySet . |
Method parameters in com.amazonaws.services.dynamodb.model with type arguments of type AttributeValue | |
---|---|
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 |
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 |
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 |
PutRequest.setItem(Map<String,AttributeValue> item)
Deprecated. The item to put |
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 |
ScanResult.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 |
BatchResponse.setItems(Collection<Map<String,AttributeValue>> items)
Deprecated. Sets the value of the Items property for this object. |
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. |
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. |
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. |
PutRequest |
PutRequest.withItem(Map<String,AttributeValue> item)
Deprecated. The item to put |
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. |
ScanResult |
ScanResult.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. |
BatchResponse |
BatchResponse.withItems(Collection<Map<String,AttributeValue>> items)
Deprecated. Sets the value of the Items property for this object. |
Constructors in com.amazonaws.services.dynamodb.model with parameters of type AttributeValue | |
---|---|
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 parameters in com.amazonaws.services.dynamodb.model with type arguments of type AttributeValue | |
---|---|
PutItemRequest(String tableName,
Map<String,AttributeValue> item)
Deprecated. Constructs a new PutItemRequest object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |