Skip to content

Commit

Permalink
docs: update README import statement (#376)
Browse files Browse the repository at this point in the history
Co-authored-by: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
  • Loading branch information
AllanZhengYP and trivikr committed Sep 30, 2019
1 parent 226e544 commit c7bbc75
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ Let’s walk through setting up a project that depends on DynamoDB from the SDK

```javascript
const {
DynamoDBClient
} = require("@aws-sdk/client-dynamodb-node/DynamoDBClient");
const {
DynamoDBClient,
ListTablesCommand
} = require("@aws-sdk/client-dynamodb-node/commands/ListTablesCommand");
} = require("@aws-sdk/client-dynamodb-node");
async function example() {
const client = new DynamoDBClient({ region: "us-west-2" });
const command = new ListTablesCommand({});
Expand Down

0 comments on commit c7bbc75

Please sign in to comment.