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\UseArnRegion;
3
 
4
interface ConfigurationInterface
5
{
6
    /**
7
     * Returns whether or not to use the ARN region if it differs from client
8
     *
9
     * @return bool
10
     */
11
    public function isUseArnRegion();
12
 
13
    /**
14
     * Returns the configuration as an associative array
15
     *
16
     * @return array
17
     */
18
    public function toArray();
19
}