Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.22.74.192
<?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();
}
|