--- id: 8b6h title: DynamoDB SDK commands tags: [AWS, databases, dynamodb] created: Sunday, June 23, 2024 --- # DynamoDB SDK commands The following commands are for using `$aws-sdk/client-dynamodb` (the JS SDK). ## Create client ```js const params = { region: "eu-west-2", accessKeyId: process.env.ACCESS_KEY_ID, secretAccessKey: process.env.ACCESS_KEY_ID, }; ``` ## Related notes