ResultInterface.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace Aws;
  3. /**
  4. * Represents an AWS result object that is returned from executing an operation.
  5. */
  6. interface ResultInterface extends \ArrayAccess, \IteratorAggregate, \Countable
  7. {
  8. /**
  9. * Provides debug information about the result object
  10. *
  11. * @return string
  12. */
  13. public function __toString();
  14. /**
  15. * Convert the result to an array.
  16. *
  17. * @return array
  18. */
  19. public function toArray();
  20. /**
  21. * Check if the model contains a key by name
  22. *
  23. * @param string $name Name of the key to retrieve
  24. *
  25. * @return bool
  26. */
  27. public function hasKey($name);
  28. /**
  29. * Get a specific key value from the result model.
  30. *
  31. * @param string $key Key to retrieve.
  32. *
  33. * @return mixed|null Value of the key or NULL if not found.
  34. */
  35. public function get($key);
  36. /**
  37. * Returns the result of executing a JMESPath expression on the contents
  38. * of the Result model.
  39. *
  40. * $result = $client->execute($command);
  41. * $jpResult = $result->search('foo.*.bar[?baz > `10`]');
  42. *
  43. * @param string $expression JMESPath expression to execute
  44. *
  45. * @return mixed Returns the result of the JMESPath expression.
  46. * @link http://jmespath.readthedocs.org/en/latest/ JMESPath documentation
  47. */
  48. public function search($expression);
  49. };