Reputation: 25707
I am trying to install the AWS SDK for PHP on my (of all things) AWS EC2 server. I think I have it installed, but can't seem to figure out how to use it. All of the code examples I can find are for S3. I'm looking for a PHP Code Example for using the AWS SDK for PHP v2.x to do anything with Amazon EC2.
Even if it just lists my currently running instances. Nothing fancy, I just need to see it work.
I've installed the SDK using Pear.
Upvotes: 0
Views: 6327
Reputation: 64781
Victor Smirnow has already taken the time to provide a question and elaborate answer on How to get list of EC2 instances with Amazon PHP SDK 2 (+1 each) - accordingly you should simply check his answer for more details, but the short version for using the DescribeInstances API action via the AWS SDK for PHP 2 describeInstances method as requested boils down to:
$config = array();
$config['key'] = 'key';
$config['secret'] = 'secret';
$config['region'] = 'us-east-1';
$ec2Client = \Aws\Ec2\Ec2Client::factory($config);
$result = $ec2Client->DescribeInstances();
Upvotes: 4
Reputation: 6945
Have you seen the User Guide? There's a Quick Start and here's the guide for S3.
Upvotes: 0