summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationInterface.php
blob: 10fbf94183da2e8a5f3ccba9dbe5c6d1c482a715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace Aws\S3\RegionalEndpoint;

/**
 * Provides access to S3 regional endpoints configuration options: endpoints_type
 */
interface ConfigurationInterface
{
    /**
     * Returns the endpoints type
     *
     * @return string
     */
    public function getEndpointsType();

    /**
     * Returns the configuration as an associative array
     *
     * @return array
     */
    public function toArray();
}