Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace Aws\Identity;
4
 
5
/**
6
 * Denotes the use of standard AWS credentials.
7
 *
8
 * @internal
9
 */
10
abstract class AwsCredentialIdentity implements IdentityInterface
11
{
12
    /**
13
     * Returns a UNIX timestamp, if available, representing the expiration
14
     * time of the AWS Credential object. Returns null if no expiration is provided.
15
     *
16
     * @return int|null
17
     */
18
    abstract public function getExpiration();
19
}