Developer Preview of AWS SDK for Go
aws.amazon.com
Developer Preview of AWS SDK for Go
1–10 of 18 posts
Re: Developer Preview of AWS SDK for Go
#2Re: Developer Preview of AWS SDK for Go
#3I hope they will rewrite awscli with it. Today it's quite painful to run it on coreos (python/pip ran in a container)
Re: Developer Preview of AWS SDK for Go
#4Personally I just prefer python and boto for most of my AWS tools, but times where I've switched to go is to take advantage of static compiling and concurrency:
1. Listing all of my AWS instances in all accounts in all regions (lots of api calls!) 2. Downloading/uploading large files via multipart API 3. Various server-side configurations
Re: Developer Preview of AWS SDK for Go
#5Re: Developer Preview of AWS SDK for Go
#6I hope they will rewrite awscli with it. Today it's quite painful to run it on coreos (python/pip ran in a container)
Re: Developer Preview of AWS SDK for Go
#7The ability to build a container that clocks in at under 10MB (vs ~700MB for a ruby aws-sdk stack) based on a minimal busybox container and a standalone go binary makes it an ideal use case for presence or short-running cron-type containers.
Also, the quality of the existing AWS sdk clients (especially with the most recent major versions) has been excellent (at least in my experience with the ruby and PHP libraries).
Re: Developer Preview of AWS SDK for Go
#8Re: Developer Preview of AWS SDK for Go
#9Re: Developer Preview of AWS SDK for Go
#10I hope they will rewrite awscli with it. Today it's quite painful to run it on coreos (python/pip ran in a container)