PluginProbe ʕ •ᴥ•ʔ
Transferito: WP Migration / trunk
Transferito: WP Migration vtrunk
trunk 11.4.0 12.0.0 13.1.0 14.0.0 14.0.11 14.0.7 14.1.0 14.1.1 14.1.2 14.1.3 14.1.4
transferito / vendor / aws / aws-sdk-php / src / S3 / UseArnRegion / ConfigurationInterface.php
transferito / vendor / aws / aws-sdk-php / src / S3 / UseArnRegion Last commit date
Exception 11 months ago Configuration.php 11 months ago ConfigurationInterface.php 11 months ago ConfigurationProvider.php 11 months ago
ConfigurationInterface.php
20 lines
1 <?php
2 namespace Aws\S3\UseArnRegion;
3
4 interface ConfigurationInterface
5 {
6 /**
7 * Returns whether or not to use the ARN region if it differs from client
8 *
9 * @return bool
10 */
11 public function isUseArnRegion();
12
13 /**
14 * Returns the configuration as an associative array
15 *
16 * @return array
17 */
18 public function toArray();
19 }
20