Interface InterfaceVpcEndpointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InterfaceVpcEndpointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.222Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forInterfaceVpcEndpointAttributes
static final class
An 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
-