transfer.sh/vendor/github.com/goamz/goamz
Remco cb6e5cb0c7 Major rewrite
* use dep for vendoring
* lets encrypt
* moved web to transfer.sh-web repo
* single command install
* added first tests
2017-03-22 18:09:21 +01:00
..
autoscaling Major rewrite 2017-03-22 18:09:21 +01:00
aws Major rewrite 2017-03-22 18:09:21 +01:00
cloudformation Major rewrite 2017-03-22 18:09:21 +01:00
cloudfront Major rewrite 2017-03-22 18:09:21 +01:00
cloudwatch Major rewrite 2017-03-22 18:09:21 +01:00
dynamodb Major rewrite 2017-03-22 18:09:21 +01:00
ec2 Major rewrite 2017-03-22 18:09:21 +01:00
ecs Major rewrite 2017-03-22 18:09:21 +01:00
elb Major rewrite 2017-03-22 18:09:21 +01:00
exp Major rewrite 2017-03-22 18:09:21 +01:00
iam Major rewrite 2017-03-22 18:09:21 +01:00
rds Major rewrite 2017-03-22 18:09:21 +01:00
route53 Major rewrite 2017-03-22 18:09:21 +01:00
s3 Major rewrite 2017-03-22 18:09:21 +01:00
sqs Major rewrite 2017-03-22 18:09:21 +01:00
sts Major rewrite 2017-03-22 18:09:21 +01:00
testutil Major rewrite 2017-03-22 18:09:21 +01:00
.gitignore Major rewrite 2017-03-22 18:09:21 +01:00
.lbox Major rewrite 2017-03-22 18:09:21 +01:00
.travis.yml Major rewrite 2017-03-22 18:09:21 +01:00
CHANGES.md Major rewrite 2017-03-22 18:09:21 +01:00
LICENSE Major rewrite 2017-03-22 18:09:21 +01:00
README.md Major rewrite 2017-03-22 18:09:21 +01:00

goamz - An Amazon Library for Go

Build Status

The goamz package enables Go programs to interact with Amazon Web Services.

This is a fork of the version developed within Canonical with additional functionality and services from a number of contributors!

The API of AWS is very comprehensive, though, and goamz doesn't even scratch the surface of it. That said, it's fairly well tested, and is the foundation in which further calls can easily be integrated. We'll continue extending the API as necessary - Pull Requests are very welcome!

The following packages are available at the moment:

github.com/goamz/goamz/autoscaling
github.com/goamz/goamz/aws
github.com/goamz/goamz/cloudformation
github.com/goamz/goamz/cloudfront
github.com/goamz/goamz/cloudwatch
github.com/goamz/goamz/dynamodb
github.com/goamz/goamz/ecs
github.com/goamz/goamz/ec2
github.com/goamz/goamz/elb
github.com/goamz/goamz/iam
github.com/goamz/goamz/rds
github.com/goamz/goamz/route53
github.com/goamz/goamz/s3
github.com/goamz/goamz/sqs
github.com/goamz/goamz/sts

github.com/goamz/goamz/exp/mturk
github.com/goamz/goamz/exp/sdb
github.com/goamz/goamz/exp/sns

Packages under exp/ are still in an experimental or unfinished/unpolished state.

API documentation

The API documentation is currently available at:

http://godoc.org/github.com/goamz/goamz

How to build and install goamz

Just use go get with any of the available packages. For example:

  • $ go get github.com/goamz/goamz/ec2
  • $ go get github.com/goamz/goamz/s3

Running tests

To run tests, first install gocheck with:

$ go get gopkg.in/check.v1

Then run go test as usual:

$ go test github.com/goamz/goamz/...

Note: running all tests with the command go test ./... will currently fail as tests do not tear down their HTTP listeners.

If you want to run integration tests (costs money), set up the EC2 environment variables as usual, and run:

$ gotest -i