# media-cloud-sync/1.2.12/includes/sdk/s3/Aws/ClientSideMonitoring/ConfigurationInterface.php

Media Cloud Sync, version 1.2.12. 42 lines.

- Page: https://pluginprobe.com/plugins/media-cloud-sync/1.2.12/code/includes/sdk/s3/Aws/ClientSideMonitoring/ConfigurationInterface.php
- Raw: https://pluginprobe.com/plugins/media-cloud-sync/1.2.12/raw/includes/sdk/s3/Aws/ClientSideMonitoring/ConfigurationInterface.php
- Modified: 2024-10-27T10:40:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/media-cloud-sync/1.2.12/code/includes/sdk/s3/Aws/ClientSideMonitoring/ConfigurationInterface.php#L10-L20`.

```php
<?php

namespace Dudlewebs\WPMCS\s3\Aws\ClientSideMonitoring;

/**
 * Provides access to client-side monitoring configuration options:
 * 'client_id', 'enabled', 'host', 'port'
 */
interface ConfigurationInterface
{
    /**
     * Checks whether or not client-side monitoring is enabled.
     *
     * @return bool
     */
    public function isEnabled();
    /**
     * Returns the Client ID, if available.
     *
     * @return string|null
     */
    public function getClientId();
    /**
     * Returns the configured host.
     *
     * @return string|null
     */
    public function getHost();
    /**
     * Returns the configured port.
     *
     * @return int|null
     */
    public function getPort();
    /**
     * Returns the configuration as an associative array.
     *
     * @return array
     */
    public function toArray();
}

```
