クライアント作成時に 'http' => ['proxy' => 'http://192.168.16.1:10']
を追加することで、プロキシ環境下でAWS SDK for PHPを利用したS3へのアクセスが可能となります。
require 'vendor/autoload.php';
use Aws\S3\S3Client;
use Aws\Exception\AwsException;
$s3 = new \Aws\S3\S3Client([
'resion' => 'ap-northeast-1',
'version' => 'latest',
'profile' => 'default',
'http' => ['proxy' => 'http://192.168.16.1:10']
]);
参考
↓の proxy
を参照