Uses of Class
com.amazonaws.services.dynamodbv2.model.GetItemRequest
-
Packages that use GetItemRequest Package Description com.amazonaws.services.dynamodbv2 com.amazonaws.services.dynamodbv2.model -
-
Uses of GetItemRequest in com.amazonaws.services.dynamodbv2
Methods in com.amazonaws.services.dynamodbv2 with parameters of type GetItemRequest Modifier and Type Method Description GetItemResult
AbstractAmazonDynamoDB. getItem(GetItemRequest request)
GetItemResult
AmazonDynamoDB. getItem(GetItemRequest getItemRequest)
The GetItem operation returns a set of attributes for the item with the given primary key.GetItemResult
AmazonDynamoDBClient. getItem(GetItemRequest getItemRequest)
The GetItem operation returns a set of attributes for the item with the given primary key.Future<GetItemResult>
AbstractAmazonDynamoDBAsync. getItemAsync(GetItemRequest request)
Future<GetItemResult>
AbstractAmazonDynamoDBAsync. getItemAsync(GetItemRequest request, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Future<GetItemResult>
AmazonDynamoDBAsync. getItemAsync(GetItemRequest getItemRequest)
The GetItem operation returns a set of attributes for the item with the given primary key.Future<GetItemResult>
AmazonDynamoDBAsync. getItemAsync(GetItemRequest getItemRequest, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
The GetItem operation returns a set of attributes for the item with the given primary key.Future<GetItemResult>
AmazonDynamoDBAsyncClient. getItemAsync(GetItemRequest request)
Future<GetItemResult>
AmazonDynamoDBAsyncClient. getItemAsync(GetItemRequest request, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type GetItemRequest Modifier and Type Method Description Future<GetItemResult>
AbstractAmazonDynamoDBAsync. getItemAsync(GetItemRequest request, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Future<GetItemResult>
AbstractAmazonDynamoDBAsync. getItemAsync(String tableName, Map<String,AttributeValue> key, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler.Future<GetItemResult>
AbstractAmazonDynamoDBAsync. getItemAsync(String tableName, Map<String,AttributeValue> key, Boolean consistentRead, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler.Future<GetItemResult>
AmazonDynamoDBAsync. getItemAsync(GetItemRequest getItemRequest, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
The GetItem operation returns a set of attributes for the item with the given primary key.Future<GetItemResult>
AmazonDynamoDBAsync. getItemAsync(String tableName, Map<String,AttributeValue> key, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler.Future<GetItemResult>
AmazonDynamoDBAsync. getItemAsync(String tableName, Map<String,AttributeValue> key, Boolean consistentRead, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler.Future<GetItemResult>
AmazonDynamoDBAsyncClient. getItemAsync(GetItemRequest request, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Future<GetItemResult>
AmazonDynamoDBAsyncClient. getItemAsync(String tableName, Map<String,AttributeValue> key, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler.Future<GetItemResult>
AmazonDynamoDBAsyncClient. getItemAsync(String tableName, Map<String,AttributeValue> key, Boolean consistentRead, AsyncHandler<GetItemRequest,GetItemResult> asyncHandler)
Simplified method form for invoking the GetItem operation with an AsyncHandler. -
Uses of GetItemRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return GetItemRequest Modifier and Type Method Description GetItemRequest
GetItemRequest. addExpressionAttributeNamesEntry(String key, String value)
GetItemRequest
GetItemRequest. addKeyEntry(String key, AttributeValue value)
GetItemRequest
GetItemRequest. clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.GetItemRequest
GetItemRequest. clearKeyEntries()
Removes all the entries added into Key.GetItemRequest
GetItemRequest. clone()
GetItemRequest
GetItemRequest. withAttributesToGet(String... attributesToGet)
GetItemRequest
GetItemRequest. withAttributesToGet(Collection<String> attributesToGet)
GetItemRequest
GetItemRequest. withConsistentRead(Boolean consistentRead)
Determines the read consistency model: If set totrue
, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.GetItemRequest
GetItemRequest. withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution tokens for attribute names in an expression.GetItemRequest
GetItemRequest. withKey(Map.Entry<String,AttributeValue> hashKey, Map.Entry<String,AttributeValue> rangeKey)
Set the hash and range key attributes of the item.GetItemRequest
GetItemRequest. withKey(Map<String,AttributeValue> key)
A map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.GetItemRequest
GetItemRequest. withProjectionExpression(String projectionExpression)
A string that identifies one or more attributes to retrieve from the table.GetItemRequest
GetItemRequest. withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
GetItemRequest
GetItemRequest. withReturnConsumedCapacity(String returnConsumedCapacity)
GetItemRequest
GetItemRequest. withTableName(String tableName)
The name of the table containing the requested item.
-