goamz

Golang Amazon Library

  • 所有者: mitchellh/goamz
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

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]))
}

主要指标

概览
名称与所有者mitchellh/goamz
主编程语言Go
编程语言Go (语言数: 2)
平台
许可证Other
所有者活动
创建于2013-05-10 20:26:17
推送于2016-12-08 16:53:59
最后一次提交2015-03-17 10:43:35
发布数0
用户参与
星数671
关注者数31
派生数217
提交数425
已启用问题?
问题数65
打开的问题数51
拉请求数122
打开的拉请求数42
关闭的拉请求数36
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?