interface CfnLicenseEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnLicenseEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnLicenseEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnLicenseEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnLicenseEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » 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 { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const cfnLicenseEndpointMixinProps: deadline_mixins.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