Files
kulakpos_web/vendor/aws/aws-sdk-php/src/Token/RefreshableTokenProviderInterface.php

24 lines
423 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?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();
}