MonitoringMiddlewareInterface.php 793 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Aws\ClientSideMonitoring;
  3. use Aws\CommandInterface;
  4. use Aws\Exception\AwsException;
  5. use Aws\ResultInterface;
  6. use GuzzleHttp\Psr7\Request;
  7. use Psr\Http\Message\RequestInterface;
  8. /**
  9. * @internal
  10. */
  11. interface MonitoringMiddlewareInterface
  12. {
  13. /**
  14. * Data for event properties to be sent to the monitoring agent.
  15. *
  16. * @param RequestInterface $request
  17. * @return array
  18. */
  19. public static function getRequestData(RequestInterface $request);
  20. /**
  21. * Data for event properties to be sent to the monitoring agent.
  22. *
  23. * @param ResultInterface|AwsException|\Exception $klass
  24. * @return array
  25. */
  26. public static function getResponseData($klass);
  27. public function __invoke(CommandInterface $cmd, RequestInterface $request);
  28. }