Installation guide

use Aws\Common\Aws;
// Create a service builder using a configuration file
$aws = Aws::factory('/path/to/my_config.json');
// Get the client from the builder by namespace
$client = $aws->get('Ses');
This guide is incomplete
This guide is not quite finished. If you are looking for a good way to contribute to the SDK and to the rest of the
AWS PHP community, then helping to write documentation is a great place to start. Our guides are written in
ReStructuredText and generated using Sphinx. Feel free to add some content to our documentation and send a
pull request to https://github.com/aws/aws-sdk-php. You can view our documentation sources at
https://github.com/aws/aws-sdk-php/tree/master/docs.
API Reference
Please see the Amazon Simple Email Service Client API reference for a details about all of the available methods,
including descriptions of the inputs and outputs.
DeleteIdentity DeleteVerifiedEmailAddress
GetIdentityDkimAttributes GetIdentityNotificationAttributes
GetIdentityVerificationAttributes GetSendQuota
GetSendStatistics ListIdentities
ListVerifiedEmailAddresses SendEmail
SendRawEmail SetIdentityDkimEnabled
SetIdentityFeedbackForwardingEnabled SetIdentityNotificationTopic
VerifyDomainDkim VerifyDomainIdentity
VerifyEmailAddress VerifyEmailIdentity
Amazon SimpleDB
This guide focuses on the AWS SDK for PHP client for Amazon SimpleDB. This guide assumes that you have
already downloaded and installed the AWS SDK for PHP. See Installation for more information on getting started.
Creating a client
First you need to create a client object using one of the following techniques.
Factory method
The easiest way to get up and running quickly is to use the Aws\SimpleDb\SimpleDbClient::factory()
method and provide your credentials (key and secret).
A region parameter is also required and must be set to one of the following values: us-east-1,
ap-northeast-1, sa-east-1, ap-southeast-1, ap-southeast-2, us-west-2, us-west-1, eu-west-1
use Aws\SimpleDb\SimpleDbClient;
$client = SimpleDbClient::factory(array(
Amazon SimpleDB
113