Files
BE_IBL/vendor/aws_sdk/Aws/Token/RefreshableTokenProviderInterface.php
2026-04-15 15:15:57 +07:00

24 lines
423 B
PHP

<?php
namespace Aws\Token;
/**
* Provides access to an AWS token used for accessing AWS services
*
*/
interface RefreshableTokenProviderInterface
{
/**
* Attempts to refresh this token object
*
* @return Token | Exception
*/
public function refresh();
/**
* Check if a refresh should be attempted
*
* @return boolean
*/
public function shouldAttemptRefresh();
}