We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226e544 commit c7bbc75Copy full SHA for c7bbc75
README.md
@@ -24,11 +24,9 @@ Let’s walk through setting up a project that depends on DynamoDB from the SDK
24
25
```javascript
26
const {
27
- DynamoDBClient
28
-} = require("@aws-sdk/client-dynamodb-node/DynamoDBClient");
29
-const {
+ DynamoDBClient,
30
ListTablesCommand
31
-} = require("@aws-sdk/client-dynamodb-node/commands/ListTablesCommand");
+} = require("@aws-sdk/client-dynamodb-node");
32
async function example() {
33
const client = new DynamoDBClient({ region: "us-west-2" });
34
const command = new ListTablesCommand({});
0 commit comments