Files
pictshare/storage-controllers/s3/Aws/S3/RegionalEndpoint/ConfigurationInterface.php
2020-01-05 03:11:41 +01:00

23 lines
421 B
PHP

<?php
namespace Aws\S3\RegionalEndpoint;
/**
* Provides access to S3 regional endpoints configuration options: endpoints_type
*/
interface ConfigurationInterface
{
/**
* Returns the endpoints type
*
* @return string
*/
public function getEndpointsType();
/**
* Returns the configuration as an associative array
*
* @return array
*/
public function toArray();
}