A native Pulumi package for creating and managing Amazon Web Services (AWS) resources.
Published
February 26, 2026
5d ago
License Sources
| Source | License | Class |
|---|---|---|
Licensie (detected) | Pending | - |
PyPI (reported) | Apache-2.0 | Permissive |
License detection is still in progress for this version.
Loading dependencies…
License File
# coding=utf-8
# *** WARNING: this file was generated by pulumi-language-python. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import builtins as _builtins
import warnings
import sys
import pulumi
import pulumi.runtime
from typing import Any, Mapping, Optional, Sequence, Union, overload
if sys.version_info >= (3, 11):
from typing import NotRequired, TypedDict, TypeAlias
else:
from typing_extensions import NotRequired, TypedDict, TypeAlias
from .. import _utilities
from .. import _inputs as _root_inputs
from .. import outputs as _root_outputs
from ._enums import *
__all__ = ['LicenseEndpointArgs', 'LicenseEndpoint']
@pulumi.input_type
class LicenseEndpointArgs:
def __init__(__self__, *,
security_group_ids: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
subnet_ids: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
vpc_id: pulumi.Input[_builtins.str],
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
"""
The set of arguments for constructing a LicenseEndpoint resource.
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The identifier of the Amazon EC2 security group that controls access to the license endpoint.
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: Identifies the VPC subnets that can connect to a license endpoint.
:param pulumi.Input[_builtins.str] vpc_id: The VPC (virtual private cloud) ID associated with the license endpoint.
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs to apply to this resource.
"""
pulumi.set(__self__, "security_group_ids", security_group_ids)
pulumi.set(__self__, "subnet_ids", subnet_ids)
pulumi.set(__self__, "vpc_id", vpc_id)
if tags is not None:
pulumi.set(__self__, "tags", tags)
@_builtins.property
@pulumi.getter(name="securityGroupIds")
def security_group_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
"""
The identifier of the Amazon EC2 security group that controls access to the license endpoint.
"""
return pulumi.get(self, "security_group_ids")
@security_group_ids.setter
def security_group_ids(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
pulumi.set(self, "security_group_ids", value)
@_builtins.property
@pulumi.getter(name="subnetIds")
def subnet_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
"""
Identifies the VPC subnets that can connect to a license endpoint.
"""
return pulumi.get(self, "subnet_ids")
@subnet_ids.setter
def subnet_ids(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
pulumi.set(self, "subnet_ids", value)
@_builtins.property
@pulumi.getter(name="vpcId")
def vpc_id(self) -> pulumi.Input[_builtins.str]:
"""
The VPC (virtual private cloud) ID associated with the license endpoint.
"""
return pulumi.get(self, "vpc_id")
@vpc_id.setter
def vpc_id(self, value: pulumi.Input[_builtins.str]):
pulumi.set(self, "vpc_id", value)
@_builtins.property
@pulumi.getter
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
"""
An array of key-value pairs to apply to this resource.
"""
return pulumi.get(self, "tags")
@tags.setter
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
pulumi.set(self, "tags", value)
@pulumi.type_token("aws-native:deadline:LicenseEndpoint")
class LicenseEndpoint(pulumi.CustomResource):
@overload
def __init__(__self__,
resource_name: str,
opts: Optional[pulumi.ResourceOptions] = None,
security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
__props__=None):
"""
Definition of AWS::Deadline::LicenseEndpoint Resource Type
:param str resource_name: The name of the resource.
:param pulumi.ResourceOptions opts: Options for the resource.
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The identifier of the Amazon EC2 security group that controls access to the license endpoint.
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: Identifies the VPC subnets that can connect to a license endpoint.
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An array of key-value pairs to apply to this resource.
:param pulumi.Input[_builtins.str] vpc_id: The VPC (virtual private cloud) ID associated with the license endpoint.
"""
...
@overload
def __init__(__self__,
resource_name: str,
args: LicenseEndpointArgs,
opts: Optional[pulumi.ResourceOptions] = None):
"""
Definition of AWS::Deadline::LicenseEndpoint Resource Type
:param str resource_name: The name of the resource.
:param LicenseEndpointArgs args: The arguments to use to populate this resource's properties.
:param pulumi.ResourceOptions opts: Options for the resource.
"""
...
def __init__(__self__, resource_name: str, *args, **kwargs):
resource_args, opts = _utilities.get_resource_args_opts(LicenseEndpointArgs, pulumi.ResourceOptions, *args, **kwargs)
if resource_args is not None:
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
else:
__self__._internal_init(resource_name, *args, **kwargs)
def _internal_init(__self__,
resource_name: str,
opts: Optional[pulumi.ResourceOptions] = None,
security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
__props__=None):
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
if not isinstance(opts, pulumi.ResourceOptions):
raise TypeError('Expected resource options to be a ResourceOptions instance')
if opts.id is None:
if __props__ is not None:
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
__props__ = LicenseEndpointArgs.__new__(LicenseEndpointArgs)
if security_group_ids is None and not opts.urn:
raise TypeError("Missing required property 'security_group_ids'")
__props__.__dict__["security_group_ids"] = security_group_ids
if subnet_ids is None and not opts.urn:
raise TypeError("Missing required property 'subnet_ids'")
__props__.__dict__["subnet_ids"] = subnet_ids
__props__.__dict__["tags"] = tags
if vpc_id is None and not opts.urn:
raise TypeError("Missing required property 'vpc_id'")
__props__.__dict__["vpc_id"] = vpc_id
__props__.__dict__["arn"] = None
__props__.__dict__["dns_name"] = None
__props__.__dict__["license_endpoint_id"] = None
__props__.__dict__["status"] = None
__props__.__dict__["status_message"] = None
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["securityGroupIds[*]", "subnetIds[*]", "vpcId"])
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
super(LicenseEndpoint, __self__).__init__(
'aws-native:deadline:LicenseEndpoint',
resource_name,
__props__,
opts)
@staticmethod
def get(resource_name: str,
id: pulumi.Input[str],
opts: Optional[pulumi.ResourceOptions] = None) -> 'LicenseEndpoint':
"""
Get an existing LicenseEndpoint resource's state with the given name, id, and optional extra
properties used to qualify the lookup.
:param str resource_name: The unique name of the resulting resource.
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
:param pulumi.ResourceOptions opts: Options for the resource.
"""
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
__props__ = LicenseEndpointArgs.__new__(LicenseEndpointArgs)
__props__.__dict__["arn"] = None
__props__.__dict__["dns_name"] = None
__props__.__dict__["license_endpoint_id"] = None
__props__.__dict__["security_group_ids"] = None
__props__.__dict__["status"] = None
__props__.__dict__["status_message"] = None
__props__.__dict__["subnet_ids"] = None
__props__.__dict__["tags"] = None
__props__.__dict__["vpc_id"] = None
return LicenseEndpoint(resource_name, opts=opts, __props__=__props__)
@_builtins.property
@pulumi.getter
def arn(self) -> pulumi.Output[_builtins.str]:
"""
The Amazon Resource Name (ARN) of the license endpoint.
"""
return pulumi.get(self, "arn")
@_builtins.property
@pulumi.getter(name="dnsName")
def dns_name(self) -> pulumi.Output[_builtins.str]:
"""
The DNS name of the license server endpoint.
"""
return pulumi.get(self, "dns_name")
@_builtins.property
@pulumi.getter(name="licenseEndpointId")
def license_endpoint_id(self) -> pulumi.Output[_builtins.str]:
"""
The license endpoint ID.
"""
return pulumi.get(self, "license_endpoint_id")
@_builtins.property
@pulumi.getter(name="securityGroupIds")
def security_group_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
"""
The identifier of the Amazon EC2 security group that controls access to the license endpoint.
"""
return pulumi.get(self, "security_group_ids")
@_builtins.property
@pulumi.getter
def status(self) -> pulumi.Output['LicenseEndpointStatus']:
"""
The status of the license endpoint.
"""
return pulumi.get(self, "status")
@_builtins.property
@pulumi.getter(name="statusMessage")
def status_message(self) -> pulumi.Output[_builtins.str]:
"""
The status message of the license endpoint.
"""
return pulumi.get(self, "status_message")
@_builtins.property
@pulumi.getter(name="subnetIds")
def subnet_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
"""
Identifies the VPC subnets that can connect to a license endpoint.
"""
return pulumi.get(self, "subnet_ids")
@_builtins.property
@pulumi.getter
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
"""
An array of key-value pairs to apply to this resource.
"""
return pulumi.get(self, "tags")
@_builtins.property
@pulumi.getter(name="vpcId")
def vpc_id(self) -> pulumi.Output[_builtins.str]:
"""
The VPC (virtual private cloud) ID associated with the license endpoint.
"""
return pulumi.get(self, "vpc_id")
Versions
729 versions| Version | License | Published | Status |
|---|---|---|---|
| 1.57.0a1772551273 Latest | Apache-2.0 (Unverified) | Mar 3, 2026 | Pending |
| 1.57.0a1772446966 | Apache-2.0 (Unverified) | Mar 2, 2026 | Pending |
| 1.56.0 | Apache-2.0 (Unverified) | Mar 2, 2026 | Pending |
| 1.56.0a1772429643 | Apache-2.0 (Unverified) | Mar 2, 2026 | Pending |
| 1.56.0a1772341745 | Apache-2.0 (Unverified) | Mar 1, 2026 | Pending |
| 1.56.0a1772194291 | Apache-2.0 (Unverified) | Feb 27, 2026 | Pending |
| 1.56.0a1772129654 Viewing | Apache-2.0 (Unverified) | Feb 26, 2026 | Pending |
| 1.56.0a1772087360 | Apache-2.0 (Unverified) | Feb 26, 2026 | Pending |
| 1.56.0a1772085501 | Apache-2.0 (Unverified) | Feb 26, 2026 | Pending |
| 1.56.0a1772041581 | Apache-2.0 (Unverified) | Feb 25, 2026 | Pending |
| 1.56.0a1771912739 | Apache-2.0 (Unverified) | Feb 24, 2026 | Pending |
| 1.56.0a1771849279 | Apache-2.0 (Unverified) | Feb 23, 2026 | Pending |
| 1.55.0 | Apache-2.0 (Unverified) | Feb 23, 2026 | Pending |
| 1.55.0a1771825174 | Apache-2.0 (Unverified) | Feb 23, 2026 | Pending |
| 1.55.0a1771655521 | Apache-2.0 (Unverified) | Feb 21, 2026 | Pending |
| 1.55.0a1771566921 | Apache-2.0 (Unverified) | Feb 20, 2026 | Pending |
| 1.55.0a1771519373 | Apache-2.0 (Unverified) | Feb 19, 2026 | Pending |
| 1.55.0a1771413905 | Apache-2.0 (Unverified) | Feb 18, 2026 | Pending |
| 1.55.0a1771394329 | Apache-2.0 (Unverified) | Feb 18, 2026 | Pending |
| 1.55.0a1771375212 | Apache-2.0 (Unverified) | Feb 18, 2026 | Pending |