🌐
npm
npmjs.com › package › @aws-sdk › client-dynamodb
aws-sdk/client-dynamodb
5 days ago - AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native. Latest version: 3.1025.0, last published: an hour ago. Start using @aws-sdk/client-dynamodb in your project by running `npm i @aws-sdk/client-dynamodb`. There are 2056 other projects in the npm registry using @aws-sdk/client-dynamodb.
      » npm install @aws-sdk/client-dynamodb
    
Published   Apr 06, 2026
Version   3.1025.0
Author   AWS SDK for JavaScript Team
🌐
AWS
docs.aws.amazon.com › amazon dynamodb › developer guide › programming with dynamodb and the aws sdks › overview of aws sdk support for dynamodb
Overview of AWS SDK support for DynamoDB - Amazon DynamoDB
Each of the AWS SDKs provides important services to your application, including the following: Formatting HTTP(S) requests and serializing request parameters. Generating a cryptographic signature for each request. Forwarding requests to a DynamoDB endpoint and receiving responses from DynamoDB.
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon dynamodb examples
Amazon DynamoDB Examples - AWS SDK for JavaScript
The JavaScript API for DynamoDB is exposed through the AWS.DynamoDB, AWS.DynamoDBStreams, and AWS.DynamoDB.DocumentClient client classes.
🌐
AWS
docs.aws.amazon.com › AWSJavaScriptSDK › latest › AWS › DynamoDB.html
Class: AWS.DynamoDB — AWS SDK for JavaScript
August 10, 2012 - For additional details and information ... is exposed as a function on service. Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability....
🌐
AWS
docs.aws.amazon.com › aws sdk for javascript › developer guide for sdk version 3 › sdk for javascript (v3) code examples › dynamodb examples using sdk for javascript (v3)
DynamoDB examples using SDK for JavaScript (v3) - AWS SDK for JavaScript
For API details, see BatchWriteItem in AWS SDK for JavaScript API Reference. The following code example shows how to use CreateTable. ... There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository ... import { CreateTableCommand, DynamoDBClient } from "@aws-sdk/client-dynamodb"; const client = new DynamoDBClient({}); export const main = async () => { const command = new CreateTableCommand({ TableName: "EspressoDrinks", // For more information about data types, // see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowI
🌐
AWS
docs.aws.amazon.com › aws sdk for java › developer guide for version 2.x › calling aws services from the aws sdk for java 2.x › work with dynamodb › map java objects to dynamodb items with the aws sdk for java 2.x › get started using the dynamodb enhanced client api
Get Started using the DynamoDB Enhanced Client API - AWS SDK for Java 2.x
DocumentationAWS SDK for JavaDeveloper Guide for version 2.x ... The following tutorial introduces you to fundamentals that you need to work with the DynamoDB Enhanced Client API. To begin working with the DynamoDB Enhanced Client API in your project, add a dependency on the dynamodb-enhanced Maven artifact. This is shown in the following examples. ... <project> <dependencyManagement> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>bom</artifactId> <version><VERSION></version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb-enhanced</artifactId> </dependency> </dependencies> ...
🌐
AWS
docs.aws.amazon.com › amazon dynamodb › developer guide › programming with dynamodb and the aws sdks
Programming with DynamoDB and the AWS SDKs - Amazon DynamoDB
Learn how to develop applications for DynamoDB using the AWS SDKs for Java, PHP, and .NET. Explore the different programmatic interfaces available, including low-level, document, and object persistence models.
Find elsewhere
🌐
AWS
docs.aws.amazon.com › AWSJavaScriptSDK › latest › AWS › DynamoDB › DocumentClient.html
Class: AWS.DynamoDB.DocumentClient — AWS SDK for JavaScript
Creates a DynamoDB document client with a set of configuration options. ... An optional map of parameters to bind to every request sent by this service object. ... An optional pre-configured instance of the AWS.DynamoDB service object. This instance's config will be copied to a new instance ...
🌐
AWS
docs.aws.amazon.com › AWSJavaSDK › latest › javadoc › com › amazonaws › services › dynamodbv2 › document › DynamoDB.html
DynamoDB (AWS SDK for Java - 1.12.797)
We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement. ... @ThreadSafe public class DynamoDB extends Object implements ListTablesApi, BatchGetItemApi, BatchWriteItemApi
🌐
AWS
aws.amazon.com › blogs › database › exploring-amazon-dynamodb-sdk-clients
Exploring Amazon DynamoDB SDK clients | AWS Database Blog
January 10, 2024 - To illustrate the distinctions between low-level and high-level clients, we present examples using two popular AWS SDKs: Node.js for JavaScript and Boto3 for Python. We showcase how the choice of client impacts the complexity and implementation details by examining code snippets in these languages. Let’s consider a scenario in which we want to retrieve an item from a DynamoDB table with the primary key user_id.
🌐
AWS
docs.aws.amazon.com › amazon dynamodb › developer guide › programming with dynamodb and the aws sdks › programming dynamodb with the aws sdk for java 2.x
Programming DynamoDB with the AWS SDK for Java 2.x - Amazon DynamoDB
Rather, "v2" indicates that the package supports the second version of the DynamoDB low-level API instead of the original version of the low-level API. The AWS SDK for Java 2.x provides full support for long-term support (LTS) Java releases
🌐
npm
npmjs.com › package › @aws-sdk › client-dynamodb-streams
@aws-sdk/client-dynamodb-streams - npm
January 16, 2026 - AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native. Latest version: 3.934.0, last published: 21 hours ago. Start using @aws-sdk/client-dynamodb-streams in your project by running `npm i @aws-sdk/client-dynamodb-streams`. There are 39 other projects in the npm registry using @aws-sdk/client-dynamodb-streams.
      » npm install @aws-sdk/client-dynamodb-streams
    
Published   Nov 18, 2025
Version   3.934.0
Author   AWS SDK for JavaScript Team
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon dynamodb examples › creating and using tables in dynamodb
Creating and Using Tables in DynamoDB - AWS SDK for JavaScript
Create a Node.js module with the file name ddb_listtables.js. Be sure to configure the SDK as previously shown. To access DynamoDB, create an AWS.DynamoDB service object. Create a JSON object containing the parameters needed to list your tables, which in this example limits the number of tables listed to 10.
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon dynamodb examples › reading and writing a single item in dynamodb
Reading and Writing A Single Item in DynamoDB - AWS SDK for JavaScript
August 10, 2012 - Create a Node.js module with the file name ddb_getitem.js. Be sure to configure the SDK as previously shown. To access DynamoDB, create an AWS.DynamoDB service object. To identify the item to get, you must provide the value of the primary key for that item in the table.
🌐
AWS
docs.aws.amazon.com › amazon dynamodb › api reference › welcome
Welcome - Amazon DynamoDB
Instead of making requests to the low-level API directly from your application, we recommend that you use one of the AWS Software Development Kits (SDKs) for your programming language. The AWS SDKs take care of request authentication, serialization, and connection management.
🌐
AWS
sdk.amazonaws.com › java › api › latest › software › amazon › awssdk › enhanced › dynamodb › DynamoDbTable.html
DynamoDbTable (AWS SDK for Java - 2.42.28)
Creates a new table in DynamoDb with the name and schema already defined for this DynamoDbTable together with additional parameters specified in the supplied request object, CreateTableEnhancedRequest.
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon dynamodb examples › querying and scanning a dynamodb table
Querying and Scanning a DynamoDB Table - AWS SDK for JavaScript
Create a JSON object containing the parameters needed to scan the table for items, which in this example includes the name of the table, the list of attribute values to return for each matching item, and an expression to filter the result set to find items containing a specified phrase. Call the scan method of the DynamoDB service object. // Load the AWS SDK for Node.js.