interface CfnLicenseEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnLicenseEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnLicenseEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnLicenseEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnLicenseEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnLicenseEndpointMixinProps |
Properties for CfnLicenseEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const cfnLicenseEndpointMixinProps: deadline.CfnLicenseEndpointMixinProps = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The identifier of the Amazon EC2 security group that controls access to the license endpoint. |
| subnet | string[] | Identifies the VPC subnets that can connect to a license endpoint. |
| tags? | Cfn[] | The tags to add to your license endpoint. |
| vpc | string | The VPC (virtual private cloud) ID associated with the license endpoint. |
securityGroupIds?
Type:
string[]
(optional)
The identifier of the Amazon EC2 security group that controls access to the license endpoint.
subnetIds?
Type:
string[]
(optional)
Identifies the VPC subnets that can connect to a license endpoint.
tags?
Type:
Cfn[]
(optional)
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.
vpcId?
Type:
string
(optional)
The VPC (virtual private cloud) ID associated with the license endpoint.

.NET
Go
Java
Python
TypeScript