Interface CfnLicenseEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLicenseEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:36.178Z")
@Stability(Stable)
public interface CfnLicenseEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLicenseEndpoint.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.deadline.*;
CfnLicenseEndpointProps cfnLicenseEndpointProps = CfnLicenseEndpointProps.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLicenseEndpointPropsstatic final classAn implementation forCfnLicenseEndpointProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier of the Amazon EC2 security group that controls access to the license endpoint.Identifies the VPC subnets that can connect to a license endpoint.getTags()The tags to add to your license endpoint.getVpcId()The VPC (virtual private cloud) ID associated with the license endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The identifier of the Amazon EC2 security group that controls access to the license endpoint.- See Also:
-
getSubnetIds
Identifies the VPC subnets that can connect to a license endpoint.- See Also:
-
getVpcId
The VPC (virtual private cloud) ID associated with the license endpoint.- See Also:
-
getTags
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 Also:
-
builder
- Returns:
- a
CfnLicenseEndpointProps.BuilderofCfnLicenseEndpointProps
-