AWS Developer Tools Blog

Downloading Objects from Amazon S3 using the AWS SDK for Ruby

The AWS SDK for Ruby provides a few methods for getting objects out of Amazon S3. This blog post focuses on using the v2 Ruby SDK (the aws-sdk-core gem) to download objects from Amazon S3. Downloading Objects into Memory For small objects, it can be useful to get an object and have it available in […]

Amazon S3 Client-Side Authenticated Encryption

Encrypting data using the Amazon S3 encryption client is one way you can provide an additional layer of protection for sensitive information you store in Amazon S3. Now the Amazon S3 encryption client provides you with the ability to use authenticated encryption for your stored data via the new CryptoMode.AuthenticatedEncryption option. The Developer Preview of […]

Release: AWS SDK for PHP – Version 2.6.2

We would like to announce the release of version 2.6.2 of the AWS SDK for PHP. Added support for Amazon SQS message attributes. Fixed Amazon S3 multi-part uploads so that manually set ContentType values are not overwritten. No longer recalculating file sizes when an Amazon S3 socket timeout occurs. Added better environment variable detection. Install the […]

Release: AWS SDK for PHP – Version 2.6.1

We would like to announce the release of version 2.6.1 of the AWS SDK for PHP. This release adds support for the latest features in Amazon DynamoDB, Amazon ElastiCache, and Auto Scaling; introduces support for a new INI-formatted credentials file (more information about this will be coming in a future blog post); and fixes a […]

Overriding Endpoints in the AWS SDK for .NET

Sometimes, when sending requests using the AWS SDK for .NET, you are required to explicitly specify an endpoint URL for a service. One such scenario is when you use an older version of the SDK to send requests to a particular service and that service is introduced in a new region. To access the service […]

Testing Webhooks Locally for Amazon SNS

In a recent post, I talked about Receiving Amazon SNS Messages in PHP. I showed you how to use the SNS Message and MessageValidator classes in the AWS SDK for PHP to handle incoming SNS messages. The PHP code for the webhook is easy to write, but can be difficult to test properly, since it […]

Receiving Amazon SNS Messages in PHP

The following post details how to use version 2 of the AWS SDK for PHP to receive and validate HTTP(S) messages from Amazon SNS. For a guide on how to do so with version 3 of the SDK, please see our updated post. Handling inbound Amazon SNS notification messages with PHP is simple. In this […]

Response Logging in AWS Tools for Windows PowerShell

As described in an earlier post, the AWS SDK for .NET has support for logging service responses, error responses, and metrics for AWS API calls. For the SDK, this is enabled through the App.config or Web.config file. The AWS Tools for Windows PowerShell supports a shell variable, named $AWSHistory, that records what cmdlets have been […]