ConfigurationInterface.php 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace Aws\ClientSideMonitoring;
  3. /**
  4. * Provides access to client-side monitoring configuration options:
  5. * 'client_id', 'enabled', 'host', 'port'
  6. */
  7. interface ConfigurationInterface
  8. {
  9. /**
  10. * Checks whether or not client-side monitoring is enabled.
  11. *
  12. * @return bool
  13. */
  14. public function isEnabled();
  15. /**
  16. * Returns the Client ID, if available.
  17. *
  18. * @return string|null
  19. */
  20. public function getClientId();
  21. /**
  22. * Returns the configured host.
  23. *
  24. * @return string|null
  25. */
  26. public function getHost();
  27. /**
  28. * Returns the configured port.
  29. *
  30. * @return int|null
  31. */
  32. public function getPort();
  33. /**
  34. * Returns the configuration as an associative array.
  35. *
  36. * @return array
  37. */
  38. public function toArray();
  39. }