Class CfnLicenseEndpointProps
Properties for defining a CfnLicenseEndpoint.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Deadline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLicenseEndpointProps : ICfnLicenseEndpointProps
Syntax (vb)
Public Class CfnLicenseEndpointProps Implements ICfnLicenseEndpointProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Deadline;
var cfnLicenseEndpointProps = new CfnLicenseEndpointProps {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnLicenseEndpointProps() | Properties for defining a |
Properties
| SecurityGroupIds | The identifier of the Amazon EC2 security group that controls access to the license endpoint. |
| SubnetIds | Identifies the VPC subnets that can connect to a license endpoint. |
| Tags | The tags to add to your license endpoint. |
| VpcId | The VPC (virtual private cloud) ID associated with the license endpoint. |
Constructors
CfnLicenseEndpointProps()
Properties for defining a CfnLicenseEndpoint.
public CfnLicenseEndpointProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Deadline;
var cfnLicenseEndpointProps = new CfnLicenseEndpointProps {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
SecurityGroupIds
The identifier of the Amazon EC2 security group that controls access to the license endpoint.
public string[] SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
SubnetIds
Identifies the VPC subnets that can connect to a license endpoint.
public string[] SubnetIds { get; set; }
Property Value
string[]
Remarks
Tags
The tags to add to your license endpoint.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
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
The VPC (virtual private cloud) ID associated with the license endpoint.
public string VpcId { get; set; }