Interface InterfaceVpcEndpointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InterfaceVpcEndpointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:35.362Z")
@Stability(Stable)
public interface InterfaceVpcEndpointAttributes
extends software.amazon.jsii.JsiiSerializable
Construction properties for an ImportedInterfaceVpcEndpoint.
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.ec2.*;
SecurityGroup securityGroup;
InterfaceVpcEndpointAttributes interfaceVpcEndpointAttributes = InterfaceVpcEndpointAttributes.builder()
.port(123)
.vpcEndpointId("vpcEndpointId")
// the properties below are optional
.securityGroups(List.of(securityGroup))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forInterfaceVpcEndpointAttributesstatic final classAn implementation forInterfaceVpcEndpointAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getPort()The port of the service of the interface VPC endpoint.default List<ISecurityGroup> The security groups associated with the interface VPC endpoint.The interface VPC endpoint identifier.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPort
The port of the service of the interface VPC endpoint. -
getVpcEndpointId
The interface VPC endpoint identifier. -
getSecurityGroups
The security groups associated with the interface VPC endpoint.If you wish to manage the network connections associated with this endpoint, you will need to specify its security groups.
-
builder
-