summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationInterface.php
blob: c7f3b24d9de9f56e981ca567f63f6257444cfd2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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();
}