Skip to content
/ aws-go Public
forked from aws/aws-sdk-go

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

License

Notifications You must be signed in to change notification settings

yosssi/aws-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-go

GoDoc Build Status MIT License

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

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

Caution

It is currently highly untested, so please be patient and report any bugs or problems you experience. The APIs may change radically without much warning, so please vendor your dependencies w/ Godep or similar.

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

Installing

Let's say you want to use EC2:

$ go get github.com/stripe/aws-go/gen/ec2

Using

import "github.com/stripe/aws-go/aws"
import "github.com/stripe/aws-go/gen/ec2"

creds := aws.Creds(accessKey, secretKey, "")
cli := ec2.New(creds, "us-west-2", nil)
resp, err := cli.DescribeInstances(nil)
if err != nil {
    panic(err)
}
fmt.Println(resp.Reservations)

Supported Services

  • AutoScaling
  • CloudFormation
  • CloudFront
  • CloudSearch
  • CloudSearchdomain
  • CloudTrail
  • CloudWatch Metrics
  • CloudWatch Logs
  • CodeDeploy
  • Cognito Identity
  • Cognito Sync
  • Config
  • Data Pipeline
  • Direct Connect
  • DynamoDB
  • EC2
  • Elasticache
  • Elastic Beanstalk
  • Elastic Transcoder
  • ELB
  • EMR
  • IAM
  • Import/Export
  • Kinesis
  • Key Management Service
  • Lambda
  • OpsWorks
  • RDS
  • RedShift
  • Route53
  • Route53 Domains
  • S3
  • SimpleDB
  • Simple Email Service
  • SNS
  • SQS
  • Storage Gateway
  • STS
  • Support
  • SWF

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

  • Go 100.0%