Esempio n. 1
0
 /**
  * Constructor
  *
  * The default region is us-east-1. Use the region to set it to one of the regions that is build-in into ZF.
  * To add a new AWS region use the setEndpoint() method.
  *
  * @param string $accessKey
  * @param string $secretKey
  * @param string $region
  */
 public function __construct($accessKey = null, $secretKey = null, $region = null)
 {
     parent::__construct($accessKey, $secretKey, $region);
     if (null !== $region) {
         $this->_setEndpoint($region);
     }
 }
 /**
  * Create Amazon SES client.
  *
  * @param  string        $access_key         (Optional) Override the default Access Key
  * @param  string        $secret_key         (Optional) Override the default Secret Key
  * @param  Zend_Uri_Http $endpoint  Endpoint (Optional) Endpoint Url
  * @return void
  */
 public function __construct($accessKey = null, $secretKey = null, Zend_Uri_Http $endpoint = null)
 {
     parent::__construct($accessKey, $secretKey);
     if (!is_null($endpoint)) {
         $this->setEndpoint($endpoint);
     }
 }
Esempio n. 3
0
 /**
  * Create Amazon client.
  *
  * @param  string $access_key       Override the default Access Key
  * @param  string $secret_key       Override the default Secret Key
  * @param  string $region           Override the default Region
  * @return void
  */
 public function __construct($accessKey = null, $secretKey = null, $region = null)
 {
     $ini = Zend_Registry::get('config');
     if (!$accessKey || !$secretKey) {
         if (!$accessKey && isset($ini->amazon->ses->accessKey)) {
             $accessKey = $ini->amazon->ses->accessKey;
         }
         if (!$secretKey && isset($ini->amazon->ses->secretKey)) {
             $secretKey = $ini->amazon->ses->secretKey;
         }
     }
     if (!$region) {
         $region = isset($ini->amazon->ses->region) ? $ini->amazon->ses->region : self::DEFAULT_REGION;
     }
     $this->setRegion($region);
     parent::__construct($accessKey, $secretKey);
 }
Esempio n. 4
0
 /**
  * Constructor
  *
  * @param string $accessKey
  * @param string $secretKey
  * @param string $region
  */
 public function __construct($accessKey = null, $secretKey = null, $region = null)
 {
     parent::__construct($accessKey, $secretKey, $region);
 }
Esempio n. 5
0
 /**
  * Create Amazon client.
  *
  * @param  string $access_key       Override the default Access Key
  * @param  string $secret_key       Override the default Secret Key
  * @param  string $region           Sets the AWS Region
  * @return void
  */
 public function __construct($accessKey = null, $secretKey = null, $region = null)
 {
     if (!$region) {
         $region = self::$_defaultRegion;
     } else {
         // make rue the region is valid
         if (!empty($region) && !in_array(strtolower($region), self::$_validEc2Regions, true)) {
             require_once 'Zend/Service/Amazon/Exception.php';
             throw new Zend_Service_Amazon_Exception('Invalid Amazon Ec2 Region');
         }
     }
     $this->_region = $region;
     parent::__construct($accessKey, $secretKey);
 }
Esempio n. 6
0
 /**
  * Constructor
  *
  * @param string $accessKey
  * @param string $secretKey
  * @param string $region
  */
 public function __construct($accessKey = null, $secretKey = null, $region = null)
 {
     parent::__construct($accessKey, $secretKey, $region);
     $this->setEndpoint('http://' . self::S3_ENDPOINT);
 }
 /**
  * Create Amazon SimpleDB client.
  *
  * @param  string $access_key       Override the default Access Key
  * @param  string $secret_key       Override the default Secret Key
  * @param  string $region           Sets the AWS Region
  * @return void
  */
 public function __construct($accessKey, $secretKey)
 {
     parent::__construct($accessKey, $secretKey);
     $this->setEndpoint("https://" . $this->_sdbEndpoint);
 }