AWS Developer Tools Blog
AWS SDK for Ruby and Nokogiri
In two weeks, on November 19, 2013, we will be removing the upper bound from the nokogiri gem dependency in version 1 of the AWS SDK for Ruby. We’ve been discussing this change with users for a while on GitHub. Why Is There Currently an Upper Bound? Nokogiri removed support for Ruby 1.8 with the […]
Working with Amazon S3 Object Versions and the AWS SDK for .NET
Amazon S3 allows you to enable versioning for a bucket. You can enable or disable versioning with the SDK by calling the PutBucketVersioning method. Note, all code samples were written for our new version 2 of the SDK. Users of version 1 of the SDK will notice some slight name changes. s3Client.PutBucketVersioning(new PutBucketVersioningRequest { BucketName […]
Release: AWS SDK for PHP – Version 2.4.8
We would like to announce the release of version 2.4.8 of the AWS SDK for PHP. This release updates the AWS Direct Connect client and updates the Amazon Elastic MapReduce client to add support for new EMR APIs, termination of specific cluster instances, and unlimited EMR steps. Changelog Updated the AWS Direct Connect client Updated […]
Sending requests through a proxy
Some network configurations require that outbound connections be sent through a proxy server. Requiring a proxy for outbound HTTP requests is a common practice in many companies, and is often something that must be configured in a client. You can send requests with the AWS SDK for PHP through a proxy using the “request options” […]
AWS SDK Core Response Structures
I blogged recently about how the code is now available for AWS SDK Core. This new repository is the basis for what will become version 2 of the AWS SDK for Ruby. We have not cut a public gem for AWS SDK Core yet. Instead, we have published the work-in-progress code to GitHub for the […]
Access Key Management for .NET Applications – Part 1
In this post, we talk about the three methods for providing AWS access keys to your .NET applications and look at a few best practices. We look at the following questions while discussing the different options for managing access keys. Security: How do you securely store credentials and supply them to your application? Ease of […]
Getting your Amazon EC2 Windows Password with the AWS SDK for .NET
When you launch a Windows instance in EC2, a password will be generated for the Windows administrator user. You can retrieve this administrator’s password by using the AWS SDK for .NET. In order to be able get the administrator password, you need to launch the EC2 instance with a key pair. To create a key […]
Archiving and Backing-up Data with the AWS SDK for .NET
Jason Fulghum recently posted a blog entry about using Glacier with the AWS SDK for Java that I thought would be interesting for .NET developers. Here is Jason’s post with the code replaced with the C# equivalent. Do you or your company have important data that you need to archive? Have you explored Amazon Glacier […]
DynamoDB APIs
Amazon DynamoDB is a fast NoSQL database service offered by AWS. DynamoDB can be invoked from .NET applications by using the AWS SDK for .NET. The SDK provides three different models for communicating with DynamoDB. This blog post is the first of a series that describes the various APIs, their respective tradeoffs, best practices, and […]
Archiving and Backing-up Data with the AWS SDK for Java
Do you or your company have important data that you need to archive? Have you explored Amazon Glacier yet? Amazon Glacier is an extremely low-cost storage service that provides secure and durable storage for data archiving and backup. Just like with other AWS offerings, you pay only for what you use. You don’t have to […]