Registry / database / dynamodb

dynamodb

JSON →
library2.42.40javamavenunverified

The AWS Java SDK for Amazon DynamoDB module holds the client classes for communicating with Amazon DynamoDB Service.

<dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb</artifactId> <version>2.42.40</version> </dependency>
INSTALL
IMPORT
SIG · DYNAMODB
D
dynamodb
databasejavav2.42.40
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

DynamoDbClient
✓ software.amazon.awssdk.services.dynamodb.DynamoDbClient

Create a DynamoDB client and list all tables in the account.

import software.amazon.awssdk.services.dynamodb.DynamoDbClient; import software.amazon.awssdk.services.dynamodb.model.ListTablesRequest; import software.amazon.awssdk.services.dynamodb.model.ListTablesResponse; public class Example { public static void main(String[] args) { DynamoDbClient client = DynamoDbClient.create(); ListTablesResponse response = client.listTables(ListTablesRequest.builder().build()); response.tableNames().forEach(System.out::println); } }
Debug
Known issues
breakingAWS SDK v2 has significant API changes from v1; ensure you use v2-specific imports and builders.
fix
Refer to the migration guide: https://docs.aws.amazon.com/sdk-for-java/latest/migration-guide/
affects: >=2.0.0
Upgrade
Version history
2.42.40latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
20 hits · last 30 days
node
18
Resources
dynamodb — mvn dependency:get dynamodb · libregistry