Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
namespace Aws\S3\RegionalEndpoint;
3
 
4
/**
5
 * Provides access to S3 regional endpoints configuration options: endpoints_type
6
 */
7
interface ConfigurationInterface
8
{
9
    /**
10
     * Returns the endpoints type
11
     *
12
     * @return string
13
     */
14
    public function getEndpointsType();
15
 
16
    /**
17
     * Returns the configuration as an associative array
18
     *
19
     * @return array
20
     */
21
    public function toArray();
22
}