Exception
11 months ago
Configuration.php
11 months ago
ConfigurationInterface.php
11 months ago
ConfigurationProvider.php
11 months ago
ConfigurationInterface.php
20 lines
| 1 | <?php |
| 2 | namespace Aws\S3\UseArnRegion; |
| 3 | |
| 4 | interface ConfigurationInterface |
| 5 | { |
| 6 | /** |
| 7 | * Returns whether or not to use the ARN region if it differs from client |
| 8 | * |
| 9 | * @return bool |
| 10 | */ |
| 11 | public function isUseArnRegion(); |
| 12 | |
| 13 | /** |
| 14 | * Returns the configuration as an associative array |
| 15 | * |
| 16 | * @return array |
| 17 | */ |
| 18 | public function toArray(); |
| 19 | } |
| 20 |