AWS Developer Tools Blog

Tag: SDK

Release: AWS SDK for PHP – Version 2.5.2

We would like to announce the release of version 2.5.2 of the AWS SDK for PHP. This release adds support for dead letter queues to the Amazon Simple Queue Service client. Please see the official release notes or the release CHANGELOG for a complete list of changes. Install the SDK Install via Composer/Packagist (e.g., “aws/aws-sdk-php”: […]

Release: AWS SDK for PHP 2.5.1

We would like to announce the release of version 2.5.1 of the AWS SDK for PHP. This release updates to the Amazon EC2 client, the Auto Scaling client, and addresses several issues. Please see the CHANGELOG for a full list of changes. Install the SDK Install via Composer/Packagist (e.g., “aws/aws-sdk-php”: “2.5.*”) Download the aws.phar Download […]

Release: AWS SDK for PHP – Version 2.5.0

We would like to announce the release of version 2.5.0 of the AWS SDK for PHP. This release adds support for audio profiles in Amazon Elastic Transcoder, geo restriction in Amazon CloudFront, and the recently announced China (Beijing) Region. Please see the official release notes or the CHANGELOG for a full list of changes. Version […]

Release: AWS SDK for PHP – Version 2.4.12

We would like to announce the release of version 2.4.12 of the AWS SDK for PHP. This release adds support for Amazon Kinesis, adds global secondary indexes support to the Amazon DynamoDB client, and provides several other client updates and fixes. Install the Latest SDK Composer/Packagist Download Phar Download Zip PEAR Channel GitHub

Release: AWS SDK for PHP – Version 2.4.11

We would like to announce the release of version 2.4.11 of the AWS SDK for PHP. This release updates the Amazon EC2 and Amazon RDS clients to use the latest API versions. Changelog Added support for copying DB snapshots from one AWS region to another to the Amazon RDS client Added support for pagination of […]

Release: AWS SDK for PHP – Version 2.4.10

We would like to announce the release of version 2.4.10 of the AWS SDK for PHP. This release adds support for AWS CloudTrail, identity federation using SAML 2.0 for AWS Identity and Access Management (IAM), and a few new features to the Amazon Redshift client. Changelog Added support for AWS CloudTrail Added support for identity […]

Release: AWS SDK for PHP – Version 2.4.9

We would like to announce the release of version 2.4.9 of the AWS SDK for PHP. This release adds support for cross zone load balancing in Elastic Load Balancing, stack policies in AWS CloudFormation, and the Gateway-Virtual Tape Library in AWS Storage Gateway. Changelog Added support for cross-zone load balancing to the Elastic Load Balancing […]

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” […]

Wire Logging in the AWS SDK for PHP

One of the features of the AWS SDK for PHP that I often recommend to customers is the LogPlugin, that can be used to do wire logging. It is one of the many plugins included with Guzzle, which is the underlying HTTP library used by the SDK. Guzzle’s LogPlugin includes a default configuration that will […]