%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/ |
Upload File : |
<?php
namespace Aws\EndpointV2\Ruleset;
/**
* Represents a fully resolved endpoint that a
* rule returns if input parameters meet its requirements.
*/
class RulesetEndpoint
{
/** @var string */
private $url;
/** @var array */
private $properties;
/** @var array */
private $headers;
public function __construct($url, $properties = null, $headers = null)
{
$this->url = $url;
$this->properties = $properties;
$this->headers = $headers;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @return mixed
*/
public function getProperties()
{
return $this->properties;
}
/**
* @return mixed
*/
public function getHeaders()
{
return $this->headers;
}
}