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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?