@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:32.919Z")
public interface InterfaceVpcEndpointAttributes
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 .securityGroupId("securityGroupId") .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() |
java.lang.Number |
getPort()
The port of the service of the interface VPC endpoint.
|
default java.lang.String |
getSecurityGroupId()
Deprecated.
use `securityGroups` instead
|
default java.util.List<ISecurityGroup> |
getSecurityGroups()
The security groups associated with the interface VPC endpoint.
|
java.lang.String |
getVpcEndpointId()
The interface VPC endpoint identifier.
|
java.lang.Number getPort()
java.lang.String getVpcEndpointId()
@Deprecated default java.lang.String getSecurityGroupId()
default java.util.List<ISecurityGroup> getSecurityGroups()
static InterfaceVpcEndpointAttributes.Builder builder()