PHP 7.4.33
Preview: CredentialsInterface.php Size: 1.16 KB
/home/godevadmin/www/admin/vendor/aws/Aws/Credentials/CredentialsInterface.php

<?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();
}

Directory Contents

Dirs: 0 × Files: 7

Name Size Perms Modified Actions
1.95 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
6.13 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
34.11 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
2.76 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
1.16 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
3.96 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download
10.38 KB lrwxrwxr-x 2024-06-18 20:10:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).