Class CfnVPCEndpointService
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.ec2.CfnVPCEndpointService
- All Implemented Interfaces:
IInspectable
,ITaggableV2
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.076Z")
@Stability(Stable)
public class CfnVPCEndpointService
extends CfnResource
implements IInspectable, ITaggableV2
Creates a VPC endpoint service configuration to which service consumers ( AWS accounts, users, and IAM roles) can connect.
To create an endpoint service configuration, you must first create one of the following for your service:
- A Network Load Balancer . Service consumers connect to your service using an interface endpoint.
- A Gateway Load Balancer . Service consumers connect to your service using a Gateway Load Balancer endpoint.
For more information, see the AWS PrivateLink User Guide .
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.*; CfnVPCEndpointService cfnVPCEndpointService = CfnVPCEndpointService.Builder.create(this, "MyCfnVPCEndpointService") .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
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnVPCEndpointService
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnVPCEndpointService
(software.amazon.jsii.JsiiObjectRef objRef) CfnVPCEndpointService
(software.constructs.Construct scope, String id) CfnVPCEndpointService
(software.constructs.Construct scope, String id, CfnVPCEndpointServiceProps props) -
Method Summary
Modifier and TypeMethodDescriptionIndicates whether requests from service consumers to create an endpoint to your service must be accepted.The ID of the endpoint service.Tag Manager which manages the tags for this resource.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.The entity that is responsible for the endpoint costs.getTags()
The tags to add to the VPC endpoint service.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAcceptanceRequired
(Boolean value) Indicates whether requests from service consumers to create an endpoint to your service must be accepted.void
setAcceptanceRequired
(IResolvable value) Indicates whether requests from service consumers to create an endpoint to your service must be accepted.void
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink .void
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink .void
setGatewayLoadBalancerArns
(List<String> value) The Amazon Resource Names (ARNs) of the Gateway Load Balancers.void
setNetworkLoadBalancerArns
(List<String> value) The Amazon Resource Names (ARNs) of the Network Load Balancers.void
setPayerResponsibility
(String value) The entity that is responsible for the endpoint costs.void
The tags to add to the VPC endpoint service.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnVPCEndpointService
protected CfnVPCEndpointService(software.amazon.jsii.JsiiObjectRef objRef) -
CfnVPCEndpointService
protected CfnVPCEndpointService(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnVPCEndpointService
@Stability(Stable) public CfnVPCEndpointService(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnVPCEndpointServiceProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnVPCEndpointService
@Stability(Stable) public CfnVPCEndpointService(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrServiceId
The ID of the endpoint service. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManager
in interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getAcceptanceRequired
Indicates whether requests from service consumers to create an endpoint to your service must be accepted. -
setAcceptanceRequired
Indicates whether requests from service consumers to create an endpoint to your service must be accepted. -
setAcceptanceRequired
Indicates whether requests from service consumers to create an endpoint to your service must be accepted. -
getContributorInsightsEnabled
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink . -
setContributorInsightsEnabled
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink . -
setContributorInsightsEnabled
Indicates whether to enable the built-in Contributor Insights rules provided by AWS PrivateLink . -
getGatewayLoadBalancerArns
The Amazon Resource Names (ARNs) of the Gateway Load Balancers. -
setGatewayLoadBalancerArns
The Amazon Resource Names (ARNs) of the Gateway Load Balancers. -
getNetworkLoadBalancerArns
The Amazon Resource Names (ARNs) of the Network Load Balancers. -
setNetworkLoadBalancerArns
The Amazon Resource Names (ARNs) of the Network Load Balancers. -
getPayerResponsibility
The entity that is responsible for the endpoint costs. -
setPayerResponsibility
The entity that is responsible for the endpoint costs. -
getTags
The tags to add to the VPC endpoint service. -
setTags
The tags to add to the VPC endpoint service.
-