Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
namespace Aws\Endpoint\UseFipsEndpoint;
3
 
4
interface ConfigurationInterface
5
{
6
    /**
7
     * Returns whether or not to use a FIPS endpoint
8
     *
9
     * @return bool
10
     */
11
    public function isUseFipsEndpoint();
12
 
13
    /**
14
     * Returns the configuration as an associative array
15
     *
16
     * @return array
17
     */
18
    public function toArray();
19
}