Installation guide
DeleteSigningCertificate DeleteUser
DeleteUserPolicy DeleteVirtualMFADevice
EnableMFADevice GetAccountPasswordPolicy
GetAccountSummary GetGroup
GetGroupPolicy GetInstanceProfile
GetLoginProfile GetRole
GetRolePolicy GetSAMLProvider
GetServerCertificate GetUser
GetUserPolicy ListAccessKeys
ListAccountAliases ListGroupPolicies
ListGroups ListGroupsForUser
ListInstanceProfiles ListInstanceProfilesForRole
ListMFADevices ListRolePolicies
ListRoles ListSAMLProviders
ListServerCertificates ListSigningCertificates
ListUserPolicies ListUsers
ListVirtualMFADevices PutGroupPolicy
PutRolePolicy PutUserPolicy
RemoveRoleFromInstanceProfile RemoveUserFromGroup
ResyncMFADevice UpdateAccessKey
UpdateAccountPasswordPolicy UpdateAssumeRolePolicy
UpdateGroup UpdateLoginProfile
UpdateSAMLProvider UpdateServerCertificate
UpdateSigningCertificate UpdateUser
UploadServerCertificate UploadSigningCertificate
AWS Import/Export
This guide focuses on the AWS SDK for PHP client for AWS Import/Export. 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\ImportExport\ImportExportClient::factory() method and provide your credentials (key and
secret).
use Aws\ImportExport\ImportExportClient;
$client = ImportExportClient::factory(array(
'key' => '<aws access key>',
'secret' => '<aws secret key>'
));
AWS Import/Export
92