LoginSignup
6
6

More than 5 years have passed since last update.

AWS SDK for PHP v3.0 の特徴・新機能

Last updated at Posted at 2014-11-26

下記の動画を見たのでメモ

AWS SDK for PHP - Version 3 の特徴

  • Guzzle5ベース
  • PHP 5.4以上
  • パフォーマンスの改善
  • スリムなコード
  • Semantic Version に従う (semver.org)
  • 新機能!

SDK V3での新機能

メモ

SDK V3からは、インスタンス生成時に、version指定が必要

例)

$ec2 = Aws\Ec2\Ec2Client::factory([
    'region' => 'us-east-1',
    'version' => '2014-06-05',
]);

参考

AWS re:Invent 2014 | (DEV305) Building Apps with the AWS SDK for PHP
https://www.youtube.com/watch?v=STrtR89f5Pc

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6