Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
namespace Aws\EndpointDiscovery;
3
 
4
/**
5
 * Provides access to endpoint discovery configuration options:
6
 * 'enabled', 'cache_limit'
7
 */
8
interface ConfigurationInterface
9
{
10
    /**
11
     * Checks whether or not endpoint discovery is enabled.
12
     *
13
     * @return bool
14
     */
15
    public function isEnabled();
16
 
17
    /**
18
     * Returns the cache limit, if available.
19
     *
20
     * @return string|null
21
     */
22
    public function getCacheLimit();
23
 
24
    /**
25
     * Returns the configuration as an associative array
26
     *
27
     * @return array
28
     */
29
    public function toArray();
30
}