Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # goamz - An Amazon Library for Go
  2. [![Build Status](http://travis-ci.org/goamz/goamz.png?branch=master)](https://travis-ci.org/goamz/goamz)
  3. The _goamz_ package enables Go programs to interact with Amazon Web Services.
  4. This is a fork of the version [developed within Canonical](https://wiki.ubuntu.com/goamz) with additional functionality and services from [a number of contributors](https://github.com/goamz/goamz/contributors)!
  5. 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!
  6. The following packages are available at the moment:
  7. ```
  8. github.com/goamz/goamz/autoscaling
  9. github.com/goamz/goamz/aws
  10. github.com/goamz/goamz/cloudformation
  11. github.com/goamz/goamz/cloudfront
  12. github.com/goamz/goamz/cloudwatch
  13. github.com/goamz/goamz/dynamodb
  14. github.com/goamz/goamz/ecs
  15. github.com/goamz/goamz/ec2
  16. github.com/goamz/goamz/elb
  17. github.com/goamz/goamz/iam
  18. github.com/goamz/goamz/rds
  19. github.com/goamz/goamz/route53
  20. github.com/goamz/goamz/s3
  21. github.com/goamz/goamz/sqs
  22. github.com/goamz/goamz/sts
  23. github.com/goamz/goamz/exp/mturk
  24. github.com/goamz/goamz/exp/sdb
  25. github.com/goamz/goamz/exp/sns
  26. ```
  27. Packages under `exp/` are still in an experimental or unfinished/unpolished state.
  28. ## API documentation
  29. The API documentation is currently available at:
  30. [http://godoc.org/github.com/goamz/goamz](http://godoc.org/github.com/goamz/goamz)
  31. ## How to build and install goamz
  32. Just use `go get` with any of the available packages. For example:
  33. * `$ go get github.com/goamz/goamz/ec2`
  34. * `$ go get github.com/goamz/goamz/s3`
  35. ## Running tests
  36. To run tests, first install gocheck with:
  37. `$ go get gopkg.in/check.v1`
  38. Then run go test as usual:
  39. `$ go test github.com/goamz/goamz/...`
  40. _Note:_ running all tests with the command `go test ./...` will currently fail as tests do not tear down their HTTP listeners.
  41. If you want to run integration tests (costs money), set up the EC2 environment variables as usual, and run:
  42. $ gotest -i