diff --git a/packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts b/packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts index c5b851c3983a3..6b11fe37371e2 100644 --- a/packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts +++ b/packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts @@ -118,6 +118,14 @@ export enum VpcEndpointIpAddressType { * address ranges and the endpoint service accepts both IPv4 and IPv6 requests. */ DUALSTACK = 'dualstack', + /** + * PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT + */ + SERVICE_DEFINED = 'service-defined', + /** + * PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT + */ + NOT_SPECIFIED = 'not-specified', } /** @@ -145,6 +153,10 @@ export enum VpcEndpointDnsRecordIpType { * The IP address type must be Dualstack. */ SERVICE_DEFINED = 'service-defined', + /** + * PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT + */ + NOT_SPECIFIED = 'not-specified', } /** @@ -162,6 +174,10 @@ export enum VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint { * Enable private DNS only for inbound endpoints. */ ONLY_INBOUND_RESOLVER = 'OnlyInboundResolver', + /** + * PLACEHOLDER_COMMENT_TO_BE_FILLED_OUT + */ + NOTSPECIFIED = 'NotSpecified', } /**