@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:46.977Z") @Stability(value=Experimental) 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
.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() |
Number |
getPort()
(experimental) The port of the service of the interface VPC endpoint.
|
default String |
getSecurityGroupId()
Deprecated.
use `securityGroups` instead
|
default List<ISecurityGroup> |
getSecurityGroups()
(experimental) The security groups associated with the interface VPC endpoint.
|
String |
getVpcEndpointId()
(experimental) The interface VPC endpoint identifier.
|
@Stability(value=Experimental) @NotNull Number getPort()
@Stability(value=Experimental) @NotNull String getVpcEndpointId()
@Stability(value=Deprecated) @Deprecated @Nullable default String getSecurityGroupId()
@Stability(value=Experimental) @Nullable default List<ISecurityGroup> getSecurityGroups()
@Stability(value=Experimental) static InterfaceVpcEndpointAttributes.Builder builder()
Copyright © 2022. All rights reserved.