Skip to main content

license_server_endpoints

Creates, updates, deletes, gets or lists a license_server_endpoints resource.

Overview

Namelicense_server_endpoints
TypeResource
Idaws.license_manager_user_subscriptions.license_server_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The timestamp when License Manager created the license server endpoint.
identity_provider_arnstringThe Amazon Resource Name (ARN) of the identity provider that's associated with the RDS license server endpoint.
license_server_endpoint_arnstringThe ARN of the ServerEndpoint resource for the RDS license server. (pattern: <code>arn:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-z0-9-.]{1,63}:[a-zA-Z0-9-.]{1,510}/[a-zA-Z0-9-.]{1,510}</code>)
license_server_endpoint_idstringThe ID of the license server endpoint.
license_server_endpoint_provisioning_statusstringThe current state of the provisioning process for the RDS license server endpoint (PROVISIONING, PROVISIONING_FAILED, PROVISIONED, DELETING, DELETION_FAILED, DELETED)
license_serversarrayAn array of LicenseServer resources that represent the license servers that are accessed through this endpoint.
server_endpointobjectThe ServerEndpoint resource contains the network address of the RDS license server endpoint.
server_typestringThe type of license server. (RDS_SAL)
status_messagestringThe message associated with the provisioning status, if there is one.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_license_server_endpointsselectregionList the Remote Desktop Services (RDS) License Server endpoints
create_license_server_endpointinsertregion, IdentityProviderArn, LicenseServerSettingsCreates a network endpoint for the Remote Desktop Services (RDS) license server.
delete_license_server_endpointdeleteregionDeletes a LicenseServerEndpoint resource.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

List the Remote Desktop Services (RDS) License Server endpoints

SELECT
creation_time,
identity_provider_arn,
license_server_endpoint_arn,
license_server_endpoint_id,
license_server_endpoint_provisioning_status,
license_servers,
server_endpoint,
server_type,
status_message
FROM aws.license_manager_user_subscriptions.license_server_endpoints
WHERE region = '{{ region }}' -- required
;

INSERT examples

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

INSERT INTO aws.license_manager_user_subscriptions.license_server_endpoints (
IdentityProviderArn,
LicenseServerSettings,
Tags,
region
)
SELECT
'{{ IdentityProviderArn }}' /* required */,
'{{ LicenseServerSettings }}' /* required */,
'{{ Tags }}',
'{{ region }}'
RETURNING
identity_provider_arn,
license_server_endpoint_arn
;

DELETE examples

Deletes a LicenseServerEndpoint resource.

DELETE FROM aws.license_manager_user_subscriptions.license_server_endpoints
WHERE region = '{{ region }}' --required
;