CredentialsInterface.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace Aws\Credentials;
  3. /**
  4. * Provides access to the AWS credentials used for accessing AWS services: AWS
  5. * access key ID, secret access key, and security token. These credentials are
  6. * used to securely sign requests to AWS services.
  7. */
  8. interface CredentialsInterface
  9. {
  10. /**
  11. * Returns the AWS access key ID for this credentials object.
  12. *
  13. * @return string
  14. */
  15. public function getAccessKeyId();
  16. /**
  17. * Returns the AWS secret access key for this credentials object.
  18. *
  19. * @return string
  20. */
  21. public function getSecretKey();
  22. /**
  23. * Get the associated security token if available
  24. *
  25. * @return string|null
  26. */
  27. public function getSecurityToken();
  28. /**
  29. * Get the UNIX timestamp in which the credentials will expire
  30. *
  31. * @return int|null
  32. */
  33. public function getExpiration();
  34. /**
  35. * Check if the credentials are expired
  36. *
  37. * @return bool
  38. */
  39. public function isExpired();
  40. /**
  41. * Converts the credentials to an associative array.
  42. *
  43. * @return array
  44. */
  45. public function toArray();
  46. }