goamz

Golang Amazon Library

  • Owner: mitchellh/goamz
  • Platform:
  • License:: Other
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

goamz - An Amazon Library for Go

Current API documentation: GoDoc

This is a fork of https://launchpad.net/goamz
that adds some missing API calls to certain packages.

This library is incomplete, but implements a large amount of the AWS API.
It is heavily used in projects such as
Terraform and
Packer.
If you find anything missing from this library,
please file an issue.

Example Usage

package main

import (
  "github.com/mitchellh/goamz/aws"
  "github.com/mitchellh/goamz/s3"
  "log"
  "fmt"
)

func main() {
  auth, err := aws.EnvAuth()
  if err != nil {
    log.Fatal(err)
  }
  client := s3.New(auth, aws.USEast)
  resp, err := client.ListBuckets()

  if err != nil {
    log.Fatal(err)
  }

  log.Print(fmt.Sprintf("%T %+v", resp.Buckets[0], resp.Buckets[0]))
}

Main metrics

Overview
Name With Ownermitchellh/goamz
Primary LanguageGo
Program languageGo (Language Count: 2)
Platform
License:Other
所有者活动
Created At2013-05-10 20:26:17
Pushed At2016-12-08 16:53:59
Last Commit At2015-03-17 10:43:35
Release Count0
用户参与
Stargazers Count671
Watchers Count31
Fork Count217
Commits Count425
Has Issues Enabled
Issues Count65
Issue Open Count51
Pull Requests Count122
Pull Requests Open Count42
Pull Requests Close Count36
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private