ArnInterface.php 864 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Aws\Arn;
  3. /**
  4. * Amazon Resource Names (ARNs) uniquely identify AWS resources. Classes
  5. * implementing ArnInterface parse and store an ARN object representation.
  6. *
  7. * Valid ARN formats include:
  8. *
  9. * arn:partition:service:region:account-id:resource-id
  10. * arn:partition:service:region:account-id:resource-type/resource-id
  11. * arn:partition:service:region:account-id:resource-type:resource-id
  12. *
  13. * Some components may be omitted, depending on the service and resource type.
  14. *
  15. * @internal
  16. */
  17. interface ArnInterface
  18. {
  19. public static function parse($string);
  20. public function __toString();
  21. public function getPrefix();
  22. public function getPartition();
  23. public function getService();
  24. public function getRegion();
  25. public function getAccountId();
  26. public function getResource();
  27. public function toArray();
  28. }