CfnLicenseEndpointMixinProps

class aws_cdk.mixins_preview.aws_deadline.mixins.CfnLicenseEndpointMixinProps(*, security_group_ids=None, subnet_ids=None, tags=None, vpc_id=None)

Bases: object

Properties for CfnLicenseEndpointPropsMixin.

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

  • subnet_ids (Optional[Sequence[str]]) – Identifies the VPC subnets that can connect to a 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.

  • vpc_id (Optional[str]) – The VPC (virtual private cloud) ID associated with the license endpoint.

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.mixins_preview.aws_deadline import mixins as deadline_mixins

cfn_license_endpoint_mixin_props = deadline_mixins.CfnLicenseEndpointMixinProps(
    security_group_ids=["securityGroupIds"],
    subnet_ids=["subnetIds"],
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    vpc_id="vpcId"
)

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 VPC (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