@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.521Z") @Stability(value=Stable) public interface VpcEndpointServiceProps extends software.amazon.jsii.JsiiSerializable
Example:
// Example automatically generated from non-compiling source. May contain errors.
NetworkLoadBalancer networkLoadBalancer1;
NetworkLoadBalancer networkLoadBalancer2;
VpcEndpointService.Builder.create(this, "EndpointService")
.vpcEndpointServiceLoadBalancers(List.of(networkLoadBalancer1, networkLoadBalancer2))
.acceptanceRequired(true)
.allowedPrincipals(List.of(new ArnPrincipal("arn:aws:iam::123456789012:root")))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
VpcEndpointServiceProps.Builder
A builder for
VpcEndpointServiceProps |
static class |
VpcEndpointServiceProps.Jsii$Proxy
An implementation for
VpcEndpointServiceProps |
| Modifier and Type | Method and Description |
|---|---|
static VpcEndpointServiceProps.Builder |
builder() |
default Boolean |
getAcceptanceRequired()
Whether requests from service consumers to connect to the service through an endpoint must be accepted.
|
default List<ArnPrincipal> |
getAllowedPrincipals()
IAM users, IAM roles, or AWS accounts to allow inbound connections from.
|
List<IVpcEndpointServiceLoadBalancer> |
getVpcEndpointServiceLoadBalancers()
One or more load balancers to host the VPC Endpoint Service.
|
@Stability(value=Stable) @NotNull List<IVpcEndpointServiceLoadBalancer> getVpcEndpointServiceLoadBalancers()
@Stability(value=Stable) @Nullable default Boolean getAcceptanceRequired()
Default: true
@Stability(value=Stable) @Nullable default List<ArnPrincipal> getAllowedPrincipals()
These principals can connect to your service using VPC endpoints. Takes a list of one or more ArnPrincipal.
Default: - no principals
@Stability(value=Stable) static VpcEndpointServiceProps.Builder builder()
VpcEndpointServiceProps.Builder of VpcEndpointServicePropsCopyright © 2022. All rights reserved.