Home > front end >  AWS SDK v2 DynamoDB interface for Go
AWS SDK v2 DynamoDB interface for Go

Time:09-13

I see that the AWS SDK for Go includes a DynamoDB interface, here. Does such an interface also exist that implements the V2 SDK Client here?

CodePudding user response:

I ended up writing my own, called DynamoDBAPI, which can be found here.

CodePudding user response:

This is the official repo that I think you are looking for: aws-sdk-go-v2/tree/main/service/dynamodb

Some example for help:

  • Creating table programmatically: Ref
  • Scanning table items: Ref
  • Related