Categorygithub.com/nabeken/aws-go-dynamodb
module
1.0.2
Repository: https://github.com/nabeken/aws-go-dynamodb.git
Documentation: pkg.go.dev

# README

aws-go-dynamodb

PkgGoDev Go MIT License

aws-go-dynamodb is a Amazon DynamoDB library built with aws/aws-sdk-go.

Testing

The tests will run on DynamoDB Local running on tcp/18000. Docker helps you to launch it on your local.

$ docker pull amazon/dynamodb-local:latest
$ docker run --name aws-go-dynamodb -d -p 18000:8000 amazon/dynamodb-local:latest
$ cd table
$ go test -v
$ docker rm -f aws-go-dynamodb

# Packages

Package attributes provides wrappers for dynamodb.AttributeValue.
No description provided by the author
Package table provides the table instance for operations on the DynamoDB table.