ConfigurationInterface.php 369 B

12345678910111213141516171819
  1. <?php
  2. namespace Aws\Endpoint\UseDualstackEndpoint;
  3. interface ConfigurationInterface
  4. {
  5. /**
  6. * Returns whether or not to use a DUALSTACK endpoint
  7. *
  8. * @return bool
  9. */
  10. public function isUseDualstackEndpoint();
  11. /**
  12. * Returns the configuration as an associative array
  13. *
  14. * @return array
  15. */
  16. public function toArray();
  17. }