OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
EndpointDiscovery
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
Configuration.php
1.12 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
ConfigurationInterface.php
610 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
ConfigurationProvider.php
8.89 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
EndpointDiscoveryMiddleware.php
13.7 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
EndpointList.php
1.98 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
Exception
-
05/19/2025 10:07:16 AM
rwxr-xr-x
Editing: ConfigurationInterface.php
Close
<?php namespace Aws\EndpointDiscovery; /** * Provides access to endpoint discovery configuration options: * 'enabled', 'cache_limit' */ interface ConfigurationInterface { /** * Checks whether or not endpoint discovery is enabled. * * @return bool */ public function isEnabled(); /** * Returns the cache limit, if available. * * @return string|null */ public function getCacheLimit(); /** * Returns the configuration as an associative array * * @return array */ public function toArray(); }