Uses of Class
com.amazonaws.services.dynamodbv2.document.KeyAttribute
-
Packages that use KeyAttribute Package Description com.amazonaws.services.dynamodbv2.document com.amazonaws.services.dynamodbv2.document.api com.amazonaws.services.dynamodbv2.document.spec -
-
Uses of KeyAttribute in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document that return types with arguments of type KeyAttribute Modifier and Type Method Description Collection<KeyAttribute>
PrimaryKey. getComponents()
Returns all the key components of this primary key.Methods in com.amazonaws.services.dynamodbv2.document with parameters of type KeyAttribute Modifier and Type Method Description PrimaryKey
PrimaryKey. addComponents(KeyAttribute... components)
Add one or multiple key components to this primary key.DeleteItemOutcome
Table. deleteItem(KeyAttribute... primaryKeyComponents)
Item
Table. getItem(KeyAttribute... primaryKeyComponents)
GetItemOutcome
Table. getItemOutcome(KeyAttribute... primaryKeyComponents)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, QueryFilter... queryFilters)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, QueryExpressionSpec queryExpressions)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String projectionExpression, String filterExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
ItemCollection<QueryOutcome>
Index. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String filterExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
ItemCollection<QueryOutcome>
Table. query(KeyAttribute hashKey)
ItemCollection<QueryOutcome>
Table. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition)
ItemCollection<QueryOutcome>
Table. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, QueryFilter... queryFilters)
ItemCollection<QueryOutcome>
Table. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String filterExpression, String projectionExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
ItemCollection<QueryOutcome>
Table. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String filterExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
Item
Item. withKeyComponents(KeyAttribute... components)
Convenient methods - sets the attributes of this item from the specified key components.Constructors in com.amazonaws.services.dynamodbv2.document with parameters of type KeyAttribute Constructor Description PrimaryKey(KeyAttribute... components)
Constructs with the specified key components. -
Uses of KeyAttribute in com.amazonaws.services.dynamodbv2.document.api
Methods in com.amazonaws.services.dynamodbv2.document.api with parameters of type KeyAttribute Modifier and Type Method Description DeleteItemOutcome
DeleteItemApi. deleteItem(KeyAttribute... primaryKeyComponents)
Deletes an item by primary key.Item
GetItemApi. getItem(KeyAttribute... primaryKeyComponents)
Retrieves an item by primary key.GetItemOutcome
GetItemApi. getItemOutcome(KeyAttribute... primaryKeyComponents)
Retrieves an item and the associated information by primary key when the primary key is a hash-only key.ItemCollection<QueryOutcome>
QueryApi. query(KeyAttribute hashKey)
Retrieves items by the specified hash key.ItemCollection<QueryOutcome>
QueryApi. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition)
Retrieves items by the specified hash key and a range key condition.ItemCollection<QueryOutcome>
QueryApi. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, QueryFilter... queryFilters)
Retrieves items by the specified hash key, a range key condition and a list of query filters.ItemCollection<QueryOutcome>
QueryApi. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String filterExpression, String projectionExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
Retrieves items by the specified hash key, a range key condition, a filter expression and a projection expression.ItemCollection<QueryOutcome>
QueryApi. query(KeyAttribute hashKey, RangeKeyCondition rangeKeyCondition, String filterExpression, Map<String,String> nameMap, Map<String,Object> valueMap)
Retrieves items by the specified hash key, a range key condition, and a filter expression string. -
Uses of KeyAttribute in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec that return KeyAttribute Modifier and Type Method Description KeyAttribute
QuerySpec. getHashKey()
Methods in com.amazonaws.services.dynamodbv2.document.spec that return types with arguments of type KeyAttribute Modifier and Type Method Description Collection<KeyAttribute>
QuerySpec. getExclusiveStartKey()
Collection<KeyAttribute>
ScanSpec. getExclusiveStartKey()
Collection<KeyAttribute>
AbstractSpecWithPrimaryKey. getKeyComponents()
Returns the primary key components that has been specified.Methods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type KeyAttribute Modifier and Type Method Description QuerySpec
QuerySpec. withExclusiveStartKey(KeyAttribute... exclusiveStartKey)
ScanSpec
ScanSpec. withExclusiveStartKey(KeyAttribute... exclusiveStartKey)
QuerySpec
QuerySpec. withHashKey(KeyAttribute hashKey)
AbstractSpecWithPrimaryKey<T>
AbstractSpecWithPrimaryKey. withPrimaryKey(KeyAttribute... components)
Sets the primary key with the specified key components.DeleteItemSpec
DeleteItemSpec. withPrimaryKey(KeyAttribute... components)
GetItemSpec
GetItemSpec. withPrimaryKey(KeyAttribute... components)
UpdateItemSpec
UpdateItemSpec. withPrimaryKey(KeyAttribute... components)
-