ConfigurationInterface.php 421 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Aws\S3\RegionalEndpoint;
  3. /**
  4. * Provides access to S3 regional endpoints configuration options: endpoints_type
  5. */
  6. interface ConfigurationInterface
  7. {
  8. /**
  9. * Returns the endpoints type
  10. *
  11. * @return string
  12. */
  13. public function getEndpointsType();
  14. /**
  15. * Returns the configuration as an associative array
  16. *
  17. * @return array
  18. */
  19. public function toArray();
  20. }