CfnLicenseEndpointProps

class aws_cdk.aws_deadline.CfnLicenseEndpointProps(*, security_group_ids, subnet_ids, vpc_id, tags=None)

Bases: object

Properties for defining a CfnLicenseEndpoint.

Parameters:
  • security_group_ids (Sequence[str]) – The identifier of the Amazon EC2 security group that controls access to the license endpoint.

  • subnet_ids (Sequence[str]) – Identifies the VPC subnets that can connect to a license endpoint.

  • vpc_id (str) – The VCP(virtual private cloud) ID associated with the license endpoint.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to add to your license endpoint. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_deadline as deadline

cfn_license_endpoint_props = deadline.CfnLicenseEndpointProps(
    security_group_ids=["securityGroupIds"],
    subnet_ids=["subnetIds"],
    vpc_id="vpcId",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

security_group_ids

The identifier of the Amazon EC2 security group that controls access to the license endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-securitygroupids

subnet_ids

Identifies the VPC subnets that can connect to a license endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-subnetids

tags

The tags to add to your license endpoint.

Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-tags

vpc_id

The VCP(virtual private cloud) ID associated with the license endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#cfn-deadline-licenseendpoint-vpcid