/aws-go-dynamodb

A DynamoDB client built with aws/aws-sdk-go

Primary LanguageGoMIT LicenseMIT

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