Skip to main content

license_endpoints

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

Overview

Namelicense_endpoints
TypeResource
Idaws.deadline.license_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dns_namestringThe DNS name.
license_endpoint_idstringThe license endpoint ID. (pattern: <code>le-[0-9a-f]{32}</code>)
security_group_idsarrayThe security group IDs for the license endpoint.
statusstringThe status of the license endpoint. (CREATE_IN_PROGRESS, DELETE_IN_PROGRESS, READY, NOT_READY)
status_messagestringThe status message of the license endpoint.
subnet_idsarrayThe subnet IDs.
vpc_idstringThe VPC (virtual private cloud) ID associated with the license endpoint. (pattern: <code>vpc-[\w]{1,120}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_license_endpointselectlicense_endpoint_id, regionGets a licence endpoint.
list_license_endpointsselectregionnextToken, maxResultsLists license endpoints.
create_license_endpointinsertregion, vpcId, subnetIds, securityGroupIdsX-Amz-Client-TokenCreates a license endpoint to integrate your various licensed software used for rendering on Deadline Cloud.
delete_license_endpointdeletelicense_endpoint_id, regionDeletes a license endpoint.

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
license_endpoint_idstringThe license endpoint ID of the license endpoint to delete.
regionstringAWS region (default: us-east-1)
X-Amz-Client-TokenstringThe unique token which the server uses to recognize retries of the same request.
maxResultsintegerThe maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.
nextTokenstringThe token for the next set of results, or null to start from the beginning.

SELECT examples

Gets a licence endpoint.

SELECT
dns_name,
license_endpoint_id,
security_group_ids,
status,
status_message,
subnet_ids,
vpc_id
FROM aws.deadline.license_endpoints
WHERE license_endpoint_id = '{{ license_endpoint_id }}' -- required
AND region = '{{ region }}' -- required
;

INSERT examples

Creates a license endpoint to integrate your various licensed software used for rendering on Deadline Cloud.

INSERT INTO aws.deadline.license_endpoints (
vpcId,
subnetIds,
securityGroupIds,
tags,
region,
`X-Amz-Client-Token`
)
SELECT
'{{ vpcId }}' /* required */,
'{{ subnetIds }}' /* required */,
'{{ securityGroupIds }}' /* required */,
'{{ tags }}',
'{{ region }}',
'{{ X-Amz-Client-Token }}'
RETURNING
license_endpoint_id
;

DELETE examples

Deletes a license endpoint.

DELETE FROM aws.deadline.license_endpoints
WHERE license_endpoint_id = '{{ license_endpoint_id }}' --required
AND region = '{{ region }}' --required
;