Interface CfnVPCEndpointServiceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPCEndpointServiceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.078Z")
@Stability(Stable)
public interface CfnVPCEndpointServiceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVPCEndpointService
.
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.*; CfnVPCEndpointServiceProps cfnVPCEndpointServiceProps = CfnVPCEndpointServiceProps.builder() .acceptanceRequired(false) .contributorInsightsEnabled(false) .gatewayLoadBalancerArns(List.of("gatewayLoadBalancerArns")) .networkLoadBalancerArns(List.of("networkLoadBalancerArns")) .payerResponsibility("payerResponsibility") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVPCEndpointServiceProps
static final class
An implementation forCfnVPCEndpointServiceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Indicates whether requests from service consumers to create an endpoint to your service must be accepted.default Object
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink .The Amazon Resource Names (ARNs) of the Gateway Load Balancers.The Amazon Resource Names (ARNs) of the Network Load Balancers.default String
The entity that is responsible for the endpoint costs.getTags()
The tags to add to the VPC endpoint service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceptanceRequired
Indicates whether requests from service consumers to create an endpoint to your service must be accepted.- See Also:
-
getContributorInsightsEnabled
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink .- See Also:
-
getGatewayLoadBalancerArns
The Amazon Resource Names (ARNs) of the Gateway Load Balancers.- See Also:
-
getNetworkLoadBalancerArns
The Amazon Resource Names (ARNs) of the Network Load Balancers.- See Also:
-
getPayerResponsibility
The entity that is responsible for the endpoint costs.The default is the endpoint owner. If you set the payer responsibility to the service owner, you cannot set it back to the endpoint owner.
- See Also:
-
getTags
The tags to add to the VPC endpoint service.- See Also:
-
builder
- Returns:
- a
CfnVPCEndpointServiceProps.Builder
ofCfnVPCEndpointServiceProps
-