# README
aws-go-dynamodb
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.