Class NullCredentials
A blank set of credentials. AWS clients must be provided credentials, but there are some types of requests that do not need authentication. This class can be used to pivot on that scenario, and also serve as a mock credentials object when testing
- Aws\Common\Credentials\NullCredentials implements Aws\Common\Credentials\CredentialsInterface
CodeCoverageIgnore
Located at Aws/Common/Credentials/NullCredentials.php
Methods summary
-
publicgetAccessKeyId ( )Returns the AWS access key ID for this credentials object.
-
publicgetSecretKey ( )Returns the AWS secret access key for this credentials object.
-
publicgetSecurityToken ( )Get the associated security token if available
-
publicgetExpiration ( )Get the UNIX timestamp in which the credentials will expire
-
publicisExpired ( )Check if the credentials are expired
-
publicserialize ( ) -
publicunserialize ( mixed $serialized ) -
publicsetAccessKeyId ( string $key )Set the AWS access key ID for this credentials object.
-
publicsetSecretKey ( string $secret )Set the AWS secret access key for this credentials object.
-
publicsetSecurityToken ( string $token )Set the security token to use with this credentials object
-
publicsetExpiration ( int $timestamp )Set the UNIX timestamp in which the credentials will expire
Methods detail
Returns the AWS access key ID for this credentials object.
Returns
stringImplementation of
Returns the AWS secret access key for this credentials object.
Returns
stringImplementation of
Get the associated security token if available
Returns
string|nullImplementation of
Get the UNIX timestamp in which the credentials will expire
Returns
integer|nullImplementation of
Check if the credentials are expired
Returns
booleanImplementation of
Implementation of
Implementation of
Set the AWS access key ID for this credentials object.
Parameters
- $key
string
$key AWS access key ID
Returns
Implementation of
Set the AWS secret access key for this credentials object.
Parameters
- $secret
string
$secret AWS secret access key
Returns
Implementation of
Set the security token to use with this credentials object
Parameters
- $token
string
$token Security token
Returns
Implementation of
Set the UNIX timestamp in which the credentials will expire
Parameters
- $timestamp
integer
$timestamp UNIX timestamp expiration