Result.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace Aws;
  3. use JmesPath\Env as JmesPath;
  4. /**
  5. * AWS result.
  6. */
  7. class Result implements ResultInterface, MonitoringEventsInterface
  8. {
  9. use HasDataTrait;
  10. use HasMonitoringEventsTrait;
  11. public function __construct(array $data = [])
  12. {
  13. $this->data = $data;
  14. }
  15. public function hasKey($name)
  16. {
  17. return isset($this->data[$name]);
  18. }
  19. public function get($key)
  20. {
  21. return $this[$key];
  22. }
  23. public function search($expression)
  24. {
  25. return JmesPath::search($expression, $this->toArray());
  26. }
  27. public function __toString()
  28. {
  29. $jsonData = json_encode($this->toArray(), JSON_PRETTY_PRINT);
  30. return <<<EOT
  31. Model Data
  32. ----------
  33. Data can be retrieved from the model object using the get() method of the
  34. model (e.g., `\$result->get(\$key)`) or "accessing the result like an
  35. associative array (e.g. `\$result['key']`). You can also execute JMESPath
  36. expressions on the result data using the search() method.
  37. {$jsonData}
  38. EOT;
  39. }
  40. /**
  41. * @deprecated
  42. */
  43. public function getPath($path)
  44. {
  45. return $this->search(str_replace('/', '.', $path));
  46. }
  47. }