io.cloudshiftdev.awscdk.services.ec2.CfnVPCEndpoint.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.ec2
import io.cloudshiftdev.awscdk.CfnResource
import io.cloudshiftdev.awscdk.IInspectable
import io.cloudshiftdev.awscdk.IResolvable
import io.cloudshiftdev.awscdk.TreeInspector
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.Any
import kotlin.Boolean
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* Specifies a VPC endpoint.
*
* A VPC endpoint provides a private connection between your VPC and an endpoint service. You can
* use an endpoint service provided by AWS , an AWS Marketplace Partner, or another AWS accounts in
* your organization. For more information, see the [AWS PrivateLink User
* Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/) .
*
* An endpoint of type `Interface` establishes connections between the subnets in your VPC and an
* AWS service , your own service, or a service hosted by another AWS account . With an interface VPC
* endpoint, you specify the subnets in which to create the endpoint and the security groups to
* associate with the endpoint network interfaces.
*
* An endpoint of type `gateway` serves as a target for a route in your route table for traffic
* destined for Amazon S3 or DynamoDB . You can specify an endpoint policy for the endpoint, which
* controls access to the service from your VPC. You can also specify the VPC route tables that use the
* endpoint. For more information about connectivity to Amazon S3 , see [Why can't I connect to an S3
* bucket using a gateway VPC
* endpoint?](https://docs.aws.amazon.com/premiumsupport/knowledge-center/connect-s3-vpc-endpoint)
*
* An endpoint of type `GatewayLoadBalancer` provides private connectivity between your VPC and
* virtual appliances from a service provider.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.services.ec2.*;
* Object policyDocument;
* CfnVPCEndpoint cfnVPCEndpoint = CfnVPCEndpoint.Builder.create(this, "MyCfnVPCEndpoint")
* .serviceName("serviceName")
* .vpcId("vpcId")
* // the properties below are optional
* .policyDocument(policyDocument)
* .privateDnsEnabled(false)
* .routeTableIds(List.of("routeTableIds"))
* .securityGroupIds(List.of("securityGroupIds"))
* .subnetIds(List.of("subnetIds"))
* .vpcEndpointType("vpcEndpointType")
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html)
*/
public open class CfnVPCEndpoint(
cdkObject: software.amazon.awscdk.services.ec2.CfnVPCEndpoint,
) : CfnResource(cdkObject),
IInspectable {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnVPCEndpointProps,
) :
this(software.amazon.awscdk.services.ec2.CfnVPCEndpoint(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(CfnVPCEndpointProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnVPCEndpointProps.Builder.() -> Unit,
) : this(scope, id, CfnVPCEndpointProps(props)
)
/**
* The date and time the VPC endpoint was created.
*
* For example: `Fri Sep 28 23:34:36 UTC 2018.`
*/
public open fun attrCreationTimestamp(): String = unwrap(this).getAttrCreationTimestamp()
/**
* (Interface endpoints) The DNS entries for the endpoint.
*
* Each entry is a combination of the hosted zone ID and the DNS name. The entries are ordered as
* follows: regional public DNS, zonal public DNS, private DNS, and wildcard DNS. This order is not
* enforced for AWS Marketplace services.
*
* The following is an example. In the first entry, the hosted zone ID is Z1HUB23UULQXV and the
* DNS name is vpce-01abc23456de78f9g-12abccd3.ec2.us-east-1.vpce.amazonaws.com.
*
* ["Z1HUB23UULQXV:vpce-01abc23456de78f9g-12abccd3.ec2.us-east-1.vpce.amazonaws.com",
* "Z1HUB23UULQXV:vpce-01abc23456de78f9g-12abccd3-us-east-1a.ec2.us-east-1.vpce.amazonaws.com",
* "Z1C12344VYDITB0:ec2.us-east-1.amazonaws.com"]
*
* If you update the `PrivateDnsEnabled` or `SubnetIds` properties, the DNS entries in the list
* will change.
*/
public open fun attrDnsEntries(): List = unwrap(this).getAttrDnsEntries()
/**
* The ID of the VPC endpoint.
*/
public open fun attrId(): String = unwrap(this).getAttrId()
/**
* (Interface endpoints) The network interface IDs.
*
* If you update the `PrivateDnsEnabled` or `SubnetIds` properties, the items in this list might
* change.
*/
public open fun attrNetworkInterfaceIds(): List =
unwrap(this).getAttrNetworkInterfaceIds()
/**
* Examines the CloudFormation resource and discloses attributes.
*
* @param inspector tree inspector to collect and process attributes.
*/
public override fun inspect(inspector: TreeInspector) {
unwrap(this).inspect(inspector.let(TreeInspector.Companion::unwrap))
}
/**
* An endpoint policy, which controls access to the service from the VPC.
*/
public open fun policyDocument(): Any? = unwrap(this).getPolicyDocument()
/**
* An endpoint policy, which controls access to the service from the VPC.
*/
public open fun policyDocument(`value`: Any) {
unwrap(this).setPolicyDocument(`value`)
}
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*/
public open fun privateDnsEnabled(): Any? = unwrap(this).getPrivateDnsEnabled()
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*/
public open fun privateDnsEnabled(`value`: Boolean) {
unwrap(this).setPrivateDnsEnabled(`value`)
}
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*/
public open fun privateDnsEnabled(`value`: IResolvable) {
unwrap(this).setPrivateDnsEnabled(`value`.let(IResolvable.Companion::unwrap))
}
/**
* The IDs of the route tables.
*/
public open fun routeTableIds(): List = unwrap(this).getRouteTableIds() ?: emptyList()
/**
* The IDs of the route tables.
*/
public open fun routeTableIds(`value`: List) {
unwrap(this).setRouteTableIds(`value`)
}
/**
* The IDs of the route tables.
*/
public open fun routeTableIds(vararg `value`: String): Unit = routeTableIds(`value`.toList())
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*/
public open fun securityGroupIds(): List = unwrap(this).getSecurityGroupIds() ?:
emptyList()
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*/
public open fun securityGroupIds(`value`: List) {
unwrap(this).setSecurityGroupIds(`value`)
}
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*/
public open fun securityGroupIds(vararg `value`: String): Unit =
securityGroupIds(`value`.toList())
/**
* The name of the endpoint service.
*/
public open fun serviceName(): String = unwrap(this).getServiceName()
/**
* The name of the endpoint service.
*/
public open fun serviceName(`value`: String) {
unwrap(this).setServiceName(`value`)
}
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*/
public open fun subnetIds(): List = unwrap(this).getSubnetIds() ?: emptyList()
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*/
public open fun subnetIds(`value`: List) {
unwrap(this).setSubnetIds(`value`)
}
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*/
public open fun subnetIds(vararg `value`: String): Unit = subnetIds(`value`.toList())
/**
* The type of endpoint.
*/
public open fun vpcEndpointType(): String? = unwrap(this).getVpcEndpointType()
/**
* The type of endpoint.
*/
public open fun vpcEndpointType(`value`: String) {
unwrap(this).setVpcEndpointType(`value`)
}
/**
* The ID of the VPC.
*/
public open fun vpcId(): String = unwrap(this).getVpcId()
/**
* The ID of the VPC.
*/
public open fun vpcId(`value`: String) {
unwrap(this).setVpcId(`value`)
}
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.ec2.CfnVPCEndpoint].
*/
@CdkDslMarker
public interface Builder {
/**
* An endpoint policy, which controls access to the service from the VPC.
*
* The default endpoint policy allows full access to the service. Endpoint policies are
* supported only for gateway and interface endpoints.
*
* For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. AWS
* CloudFormation converts YAML policies to JSON format before calling the API to create or modify
* the VPC endpoint.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument)
* @param policyDocument An endpoint policy, which controls access to the service from the VPC.
*/
public fun policyDocument(policyDocument: Any)
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*
* The private hosted zone contains a record set for the default public DNS name for the service
* for the Region (for example, `kinesis.us-east-1.amazonaws.com` ), which resolves to the private
* IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to
* the default public DNS name for the service instead of the public DNS names that are
* automatically generated by the VPC endpoint service.
*
* To use a private hosted zone, you must set the following VPC attributes to `true` :
* `enableDnsHostnames` and `enableDnsSupport` .
*
* This property is supported only for interface endpoints.
*
* Default: `false`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled)
* @param privateDnsEnabled Indicate whether to associate a private hosted zone with the
* specified VPC.
*/
public fun privateDnsEnabled(privateDnsEnabled: Boolean)
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*
* The private hosted zone contains a record set for the default public DNS name for the service
* for the Region (for example, `kinesis.us-east-1.amazonaws.com` ), which resolves to the private
* IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to
* the default public DNS name for the service instead of the public DNS names that are
* automatically generated by the VPC endpoint service.
*
* To use a private hosted zone, you must set the following VPC attributes to `true` :
* `enableDnsHostnames` and `enableDnsSupport` .
*
* This property is supported only for interface endpoints.
*
* Default: `false`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled)
* @param privateDnsEnabled Indicate whether to associate a private hosted zone with the
* specified VPC.
*/
public fun privateDnsEnabled(privateDnsEnabled: IResolvable)
/**
* The IDs of the route tables.
*
* Routing is supported only for gateway endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-routetableids)
* @param routeTableIds The IDs of the route tables.
*/
public fun routeTableIds(routeTableIds: List)
/**
* The IDs of the route tables.
*
* Routing is supported only for gateway endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-routetableids)
* @param routeTableIds The IDs of the route tables.
*/
public fun routeTableIds(vararg routeTableIds: String)
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*
* If this parameter is not specified, we use the default security group for the VPC. Security
* groups are supported only for interface endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-securitygroupids)
* @param securityGroupIds The IDs of the security groups to associate with the endpoint network
* interfaces.
*/
public fun securityGroupIds(securityGroupIds: List)
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*
* If this parameter is not specified, we use the default security group for the VPC. Security
* groups are supported only for interface endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-securitygroupids)
* @param securityGroupIds The IDs of the security groups to associate with the endpoint network
* interfaces.
*/
public fun securityGroupIds(vararg securityGroupIds: String)
/**
* The name of the endpoint service.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename)
* @param serviceName The name of the endpoint service.
*/
public fun serviceName(serviceName: String)
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*
* You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint.
* You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint,
* you can specify only one subnet.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-subnetids)
* @param subnetIds The IDs of the subnets in which to create endpoint network interfaces.
*/
public fun subnetIds(subnetIds: List)
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*
* You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint.
* You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint,
* you can specify only one subnet.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-subnetids)
* @param subnetIds The IDs of the subnets in which to create endpoint network interfaces.
*/
public fun subnetIds(vararg subnetIds: String)
/**
* The type of endpoint.
*
* Default: Gateway
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype)
* @param vpcEndpointType The type of endpoint.
*/
public fun vpcEndpointType(vpcEndpointType: String)
/**
* The ID of the VPC.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid)
* @param vpcId The ID of the VPC.
*/
public fun vpcId(vpcId: String)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder: software.amazon.awscdk.services.ec2.CfnVPCEndpoint.Builder =
software.amazon.awscdk.services.ec2.CfnVPCEndpoint.Builder.create(scope, id)
/**
* An endpoint policy, which controls access to the service from the VPC.
*
* The default endpoint policy allows full access to the service. Endpoint policies are
* supported only for gateway and interface endpoints.
*
* For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. AWS
* CloudFormation converts YAML policies to JSON format before calling the API to create or modify
* the VPC endpoint.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument)
* @param policyDocument An endpoint policy, which controls access to the service from the VPC.
*/
override fun policyDocument(policyDocument: Any) {
cdkBuilder.policyDocument(policyDocument)
}
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*
* The private hosted zone contains a record set for the default public DNS name for the service
* for the Region (for example, `kinesis.us-east-1.amazonaws.com` ), which resolves to the private
* IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to
* the default public DNS name for the service instead of the public DNS names that are
* automatically generated by the VPC endpoint service.
*
* To use a private hosted zone, you must set the following VPC attributes to `true` :
* `enableDnsHostnames` and `enableDnsSupport` .
*
* This property is supported only for interface endpoints.
*
* Default: `false`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled)
* @param privateDnsEnabled Indicate whether to associate a private hosted zone with the
* specified VPC.
*/
override fun privateDnsEnabled(privateDnsEnabled: Boolean) {
cdkBuilder.privateDnsEnabled(privateDnsEnabled)
}
/**
* Indicate whether to associate a private hosted zone with the specified VPC.
*
* The private hosted zone contains a record set for the default public DNS name for the service
* for the Region (for example, `kinesis.us-east-1.amazonaws.com` ), which resolves to the private
* IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to
* the default public DNS name for the service instead of the public DNS names that are
* automatically generated by the VPC endpoint service.
*
* To use a private hosted zone, you must set the following VPC attributes to `true` :
* `enableDnsHostnames` and `enableDnsSupport` .
*
* This property is supported only for interface endpoints.
*
* Default: `false`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-privatednsenabled)
* @param privateDnsEnabled Indicate whether to associate a private hosted zone with the
* specified VPC.
*/
override fun privateDnsEnabled(privateDnsEnabled: IResolvable) {
cdkBuilder.privateDnsEnabled(privateDnsEnabled.let(IResolvable.Companion::unwrap))
}
/**
* The IDs of the route tables.
*
* Routing is supported only for gateway endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-routetableids)
* @param routeTableIds The IDs of the route tables.
*/
override fun routeTableIds(routeTableIds: List) {
cdkBuilder.routeTableIds(routeTableIds)
}
/**
* The IDs of the route tables.
*
* Routing is supported only for gateway endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-routetableids)
* @param routeTableIds The IDs of the route tables.
*/
override fun routeTableIds(vararg routeTableIds: String): Unit =
routeTableIds(routeTableIds.toList())
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*
* If this parameter is not specified, we use the default security group for the VPC. Security
* groups are supported only for interface endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-securitygroupids)
* @param securityGroupIds The IDs of the security groups to associate with the endpoint network
* interfaces.
*/
override fun securityGroupIds(securityGroupIds: List) {
cdkBuilder.securityGroupIds(securityGroupIds)
}
/**
* The IDs of the security groups to associate with the endpoint network interfaces.
*
* If this parameter is not specified, we use the default security group for the VPC. Security
* groups are supported only for interface endpoints.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-securitygroupids)
* @param securityGroupIds The IDs of the security groups to associate with the endpoint network
* interfaces.
*/
override fun securityGroupIds(vararg securityGroupIds: String): Unit =
securityGroupIds(securityGroupIds.toList())
/**
* The name of the endpoint service.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-servicename)
* @param serviceName The name of the endpoint service.
*/
override fun serviceName(serviceName: String) {
cdkBuilder.serviceName(serviceName)
}
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*
* You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint.
* You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint,
* you can specify only one subnet.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-subnetids)
* @param subnetIds The IDs of the subnets in which to create endpoint network interfaces.
*/
override fun subnetIds(subnetIds: List) {
cdkBuilder.subnetIds(subnetIds)
}
/**
* The IDs of the subnets in which to create endpoint network interfaces.
*
* You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint.
* You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint,
* you can specify only one subnet.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-subnetids)
* @param subnetIds The IDs of the subnets in which to create endpoint network interfaces.
*/
override fun subnetIds(vararg subnetIds: String): Unit = subnetIds(subnetIds.toList())
/**
* The type of endpoint.
*
* Default: Gateway
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype)
* @param vpcEndpointType The type of endpoint.
*/
override fun vpcEndpointType(vpcEndpointType: String) {
cdkBuilder.vpcEndpointType(vpcEndpointType)
}
/**
* The ID of the VPC.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcid)
* @param vpcId The ID of the VPC.
*/
override fun vpcId(vpcId: String) {
cdkBuilder.vpcId(vpcId)
}
public fun build(): software.amazon.awscdk.services.ec2.CfnVPCEndpoint = cdkBuilder.build()
}
public companion object {
public val CFN_RESOURCE_TYPE_NAME: String =
software.amazon.awscdk.services.ec2.CfnVPCEndpoint.CFN_RESOURCE_TYPE_NAME
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): CfnVPCEndpoint {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return CfnVPCEndpoint(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.ec2.CfnVPCEndpoint): CfnVPCEndpoint
= CfnVPCEndpoint(cdkObject)
internal fun unwrap(wrapped: CfnVPCEndpoint): software.amazon.awscdk.services.ec2.CfnVPCEndpoint
= wrapped.cdkObject as software.amazon.awscdk.services.ec2.CfnVPCEndpoint
}
}