OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-sdk-php
/
src
/
EndpointDiscovery
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:55:35 AM
rwxr-xr-x
📄
Configuration.php
1.12 KB
08/14/2024 10:52:03 AM
rw-r--r--
📄
ConfigurationInterface.php
610 bytes
08/14/2024 10:52:03 AM
rw-r--r--
📄
ConfigurationProvider.php
8.89 KB
08/14/2024 10:52:03 AM
rw-r--r--
📄
EndpointDiscoveryMiddleware.php
13.7 KB
08/14/2024 10:52:03 AM
rw-r--r--
📄
EndpointList.php
1.98 KB
08/14/2024 10:52:03 AM
rw-r--r--
📁
Exception
-
08/14/2024 10:55:12 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(); }