skip to Main Content

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?

2

Answers


  1. Chosen as BEST ANSWER

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


  2. 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
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search