_accessKey = $accessKey; $this->_secretKey = $secretKey; $this->_region = $region; } /** * Method to fetch the AWS Region * * @return string */ protected function _getRegion() { return (!empty($this->_region)) ? $this->_region . '.' : ''; } /** * Method to fetch the Access Key * * @return string */ protected function _getAccessKey() { return $this->_accessKey; } /** * Method to fetch the Secret AWS Key * * @return string */ protected function _getSecretKey() { return $this->_secretKey; } }