.NAME
    RDLicenseConfiguration

.DESCRIPTION
    This resource is used to configure the Remote Desktop License Configuration.

.PARAMETER ConnectionBroker
    Key - String
    Specifies the database file path of SQL Server.

.PARAMETER LicenseServer
    Write - StringArray
    Specifies the database file path of SQL Server.

.PARAMETER LicenseMode
    Required - String
    Allowed values: PerUser, PerDevice, NotConfigured
    Specifies the database file path of SQL Server.

.EXAMPLE 1

This example shows how to ensure that the Remote Desktop Licensing is setup in the correct mode.

configuration Example
{
    Import-DscResource -ModuleName 'RemoteDesktopServicesDsc'

    node localhost {

        RDLicenseConfiguration MyLicenseServer {
            ConnectionBroker = 'connectionbroker.server.fqdn'
            LicenseMode      = 'PerUser'
            LicenseServer    = 'license.server.fqdn'
        }
    }
}

