Interface VpcEndpointServiceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcEndpointServiceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:09.364Z")
@Stability(Stable)
public interface VpcEndpointServiceProps
extends software.amazon.jsii.JsiiSerializable
Construction properties for a VpcEndpointService.
Example:
NetworkLoadBalancer networkLoadBalancer;
VpcEndpointService.Builder.create(this, "EndpointService")
.vpcEndpointServiceLoadBalancers(List.of(networkLoadBalancer))
// Support both IPv4 and IPv6 connections to the endpoint service
.supportedIpAddressTypes(List.of(IpAddressType.IPV4, IpAddressType.IPV6))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forVpcEndpointServicePropsstatic final classAn implementation forVpcEndpointServiceProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default BooleanWhether requests from service consumers to connect to the service through an endpoint must be accepted.default List<ArnPrincipal> IAM users, IAM roles, or AWS accounts to allow inbound connections from.The Regions from which service consumers can access the service.default BooleanIndicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink.default List<IpAddressType> Specify which IP address types are supported for VPC endpoint service.One or more load balancers to host the VPC Endpoint Service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpcEndpointServiceLoadBalancers
@Stability(Stable) @NotNull List<IVpcEndpointServiceLoadBalancer> getVpcEndpointServiceLoadBalancers()One or more load balancers to host the VPC Endpoint Service. -
getAcceptanceRequired
Whether requests from service consumers to connect to the service through an endpoint must be accepted.Default: true
-
getAllowedPrincipals
IAM users, IAM roles, or AWS accounts to allow inbound connections from.These principals can connect to your service using VPC endpoints. Takes a list of one or more ArnPrincipal.
Default: - no principals
-
getAllowedRegions
The Regions from which service consumers can access the service.Default: - No Region restrictions
-
getContributorInsights
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink.Default: false
-
getSupportedIpAddressTypes
Specify which IP address types are supported for VPC endpoint service.Default: - No specific IP address types configured
-
builder
- Returns:
- a
VpcEndpointServiceProps.BuilderofVpcEndpointServiceProps
-