__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws\Credentials;
/**
* Provides access to the AWS credentials used for accessing AWS services: AWS
* access key ID, secret access key, and security token. These credentials are
* used to securely sign requests to AWS services.
*/
interface CredentialsInterface
{
/**
* Returns the AWS access key ID for this credentials object.
*
* @return string
*/
public function getAccessKeyId();
/**
* Returns the AWS secret access key for this credentials object.
*
* @return string
*/
public function getSecretKey();
/**
* Get the associated security token if available
*
* @return string|null
*/
public function getSecurityToken();
/**
* Get the UNIX timestamp in which the credentials will expire
*
* @return int|null
*/
public function getExpiration();
/**
* Check if the credentials are expired
*
* @return bool
*/
public function isExpired();
/**
* Converts the credentials to an associative array.
*
* @return array
*/
public function toArray();
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AssumeRoleCredentialProvider.php | File | 1.89 KB | 0777 |
|
| AssumeRoleWithWebIdentityCredentialProvider.php | File | 5.97 KB | 0777 |
|
| CredentialProvider.php | File | 36.9 KB | 0777 |
|
| Credentials.php | File | 3.18 KB | 0777 |
|
| CredentialsInterface.php | File | 1.11 KB | 0777 |
|
| CredentialsUtils.php | File | 759 B | 0777 |
|
| EcsCredentialProvider.php | File | 7.79 KB | 0777 |
|
| InstanceProfileProvider.php | File | 16.24 KB | 0777 |
|