| 12345678910111213141516171819202122 | <?phpnamespace 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();}
 |