Skip to content

Create License Server Endpoint

licensemanagerusersubscriptions_create_license_server_endpoint R Documentation

Creates a network endpoint for the Remote Desktop Services (RDS) license server

Description

Creates a network endpoint for the Remote Desktop Services (RDS) license server.

Usage

licensemanagerusersubscriptions_create_license_server_endpoint(
  IdentityProviderArn, LicenseServerSettings, Tags)

Arguments

IdentityProviderArn

[required] The Amazon Resource Name (ARN) that identifies the IdentityProvider resource that contains details about a registered identity provider. In the case of Active Directory, that can be a self-managed Active Directory or an Amazon Web Services Managed Active Directory that contains user identity details.

LicenseServerSettings

[required] The LicenseServerSettings resource to create for the endpoint. The settings include the type of license server and the Secrets Manager secret that enables administrators to add or remove users associated with the license server.

Tags

The tags that apply for the license server endpoint.

Value

A list with the following syntax:

list(
  IdentityProviderArn = "string",
  LicenseServerEndpointArn = "string"
)

Request syntax

svc$create_license_server_endpoint(
  IdentityProviderArn = "string",
  LicenseServerSettings = list(
    ServerSettings = list(
      RdsSalSettings = list(
        RdsSalCredentialsProvider = list(
          SecretsManagerCredentialsProvider = list(
            SecretId = "string"
          )
        )
      )
    ),
    ServerType = "RDS_SAL"
  ),
  Tags = list(
    "string"
  )
)