Get Item Request in DynamoDB Using Java (Guide w/ Code Examples)

Provided by Rafal Wilinski
You can get an item in DynamoDB using the GetItemRequest method. It requires the table name and they primary key of the table. An implementation of this method is shown below.
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB; import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder; import com.amazonaws.services.dynamodbv2.model.AttributeValue; import com.amazonaws.services.dynamodbv2.model.GetItemRequest; import com.amazonaws.services.dynamodbv2.model.GetItemResult; public class GetItemRequestExample { public static void main(String[] args) { AmazonDynamoDB client = AmazonDynamoDBClientBuilder.defaultClient(); Map<String, AttributeValue> key = new HashMap<>(); key.put("id", new AttributeValue().withN("123")); GetItemRequest request = new GetItemRequest() .withTableName("MyTable") .withKey(key); GetItemResult result = client.getItem(request); System.out.println(result.getItem()); } }
Similar Code Examples
- Update Expression in DynamoDB Using Java
- Update Attribute in DynamoDB Using Java
- Batch Save Using DynamoDB Mapper
- Get Multiple Items in DynamoDB Using Java
- Update Item in DynamoDB Using Java
- Batch Read in DynamoDB Using Java
- Batch Insert in DynamoDB Using Java
- Delete in DynamoDB Using Java
- Batch Load Using DynamoDB Mapper
- Query Global Secondary Index in DynamoDB Using Java
- Delete by Hashkey Using DynamoDB Mapper
- Delete All Items in DynamoDB Using Java
- Batch Get in DynamoDB Using Java
- Batch Write Item in DynamoDB Using Java
- Remove Attribute in DynamoDB Using Java
Tired of switching accounts and regions? Use Dynobase.
Try 7-day free trial. No strings attached.
Product Features
DynamoDB Tools
DynamoDB Info
© 2026 Dynobase