@Generated(value="jsii-pacmak/1.57.0 (build f614666)", date="2022-04-22T22:36:21.568Z") @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()
@Stability(value=Stable) static InterfaceVpcEndpointAttributes.Builder builder()
Copyright © 2022. All rights reserved.