mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-16 10:03:01 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
19 lines
367 B
PHP
19 lines
367 B
PHP
<?php
|
|
namespace Aws\S3\UseArnRegion;
|
|
|
|
interface ConfigurationInterface
|
|
{
|
|
/**
|
|
* Returns whether or not to use the ARN region if it differs from client
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isUseArnRegion();
|
|
|
|
/**
|
|
* Returns the configuration as an associative array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray();
|
|
}
|