ConfigurationInterface.php 367 B

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