@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.462Z") @Stability(value=Stable) public interface InterfaceVpcEndpointAttributes extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
InterfaceVpcEndpointAttributes.Builder
A builder for
InterfaceVpcEndpointAttributes |
static class |
InterfaceVpcEndpointAttributes.Jsii$Proxy
An implementation for
InterfaceVpcEndpointAttributes |
| Modifier and Type | Method and Description |
|---|---|
static InterfaceVpcEndpointAttributes.Builder |
builder() |
Number |
getPort()
The port of the service of the interface VPC endpoint.
|
default List<ISecurityGroup> |
getSecurityGroups()
The security groups associated with the interface VPC endpoint.
|
String |
getVpcEndpointId()
The interface VPC endpoint identifier.
|
@Stability(value=Stable) @NotNull Number getPort()
@Stability(value=Stable) @NotNull String getVpcEndpointId()
@Stability(value=Stable) @Nullable default List<ISecurityGroup> getSecurityGroups()
If you wish to manage the network connections associated with this endpoint, you will need to specify its security groups.
@Stability(value=Stable) static InterfaceVpcEndpointAttributes.Builder builder()
Copyright © 2022. All rights reserved.