mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-16 13:08:01 +00:00
20 lines
367 B
PHP
20 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();
|
|
}
|