| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- <?php
 
- namespace Aws\Endpoint\UseFipsEndpoint;
 
- use Aws;
 
- use Aws\Endpoint\UseFipsEndpoint\Exception\ConfigurationException;
 
- class Configuration implements ConfigurationInterface
 
- {
 
-     private $useFipsEndpoint;
 
-     public function __construct($useFipsEndpoint)
 
-     {
 
-         $this->useFipsEndpoint = Aws\boolean_value($useFipsEndpoint);
 
-         if (is_null($this->useFipsEndpoint)) {
 
-             throw new ConfigurationException("'use_fips_endpoint' config option"
 
-                 . " must be a boolean value.");
 
-         }
 
-     }
 
-     /**
 
-      * {@inheritdoc}
 
-      */
 
-     public function isUseFipsEndpoint()
 
-     {
 
-         return $this->useFipsEndpoint;
 
-     }
 
-     /**
 
-      * {@inheritdoc}
 
-      */
 
-     public function toArray()
 
-     {
 
-         return [
 
-             'use_fips_endpoint' => $this->isUseFipsEndpoint(),
 
-         ];
 
-     }
 
- }
 
 
  |