Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

An incredibly experimental, automatically generated set of AWS clients in Go.

License

NotificationsYou must be signed in to change notification settings

zencoder/aws-sdk-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoDocBuild StatusApache V2 License

aws-sdk-go is a set of clients for all Amazon Web Services APIs,automatically generated from the JSON schemas shipped withbotocore.

It supports all known AWS services, and maps exactly to the documentedAPIs, with some allowances for Go-specific idioms (e.g.ID vs.Id).

Caution

It is currentlyhighly untested, so please be patient and report anybugs or problems you experience. The APIs may change radically withoutmuch warning, so please vendor your dependencies w/ Godep or similar.

Please do not confuse this for a stable, feature-complete library.

Note that many services are currently not fully implemented. Some operationsmight work, but not all, especially for XML-based services. We are currentlyworking to build out better service support, please bear with us!

Installing

Let's say you want to use EC2:

$ go get github.com/awslabs/aws-sdk-go/service/ec2

NOTE: If you are trying to use the development branch, after performing the command above, you must additionally check out the development branch:

$ cd $GOPATH/src/github.com/awslabs/aws-sdk-go; git checkout develop

Using

import"github.com/awslabs/aws-sdk-go/aws"import"github.com/awslabs/aws-sdk-go/service/ec2"creds:=aws.Creds(accessKey,secretKey,"")cli:=ec2.New(creds,"us-west-2",nil)resp,err:=cli.DescribeInstances(nil)iferr!=nil {panic(err)}fmt.Println(resp.Reservations)

About

An incredibly experimental, automatically generated set of AWS clients in Go.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go100.0%

[8]ページ先頭

©2009-2025 Movatter.jp