summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/ConfigurationInterface.php
blob: 41d543b8ccb403ea179c570a62fc8372039811e8 (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\Sts\RegionalEndpoints;

/**
 * Provides access to STS 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();
}