mirror of
https://gh.wpcy.net/https://github.com/pixelabs-wp/whitelabel-plugins-update-server.git
synced 2026-04-18 04:02:15 +08:00
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();
|
|
}
|