MonitoringEventsInterface.php 742 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Aws;
  3. /**
  4. * Interface for adding and retrieving client-side monitoring events
  5. */
  6. interface MonitoringEventsInterface
  7. {
  8. /**
  9. * Get client-side monitoring events attached to this object. Each event is
  10. * represented as an associative array within the returned array.
  11. *
  12. * @return array
  13. */
  14. public function getMonitoringEvents();
  15. /**
  16. * Prepend a client-side monitoring event to this object's event list
  17. *
  18. * @param array $event
  19. */
  20. public function prependMonitoringEvent(array $event);
  21. /**
  22. * Append a client-side monitoring event to this object's event list
  23. *
  24. * @param array $event
  25. */
  26. public function appendMonitoringEvent(array $event);
  27. }