Skip to content

Commit 4bc151b

Browse files
authoredMar 4, 2025
chore(ec2): add VPC interface endpoints for Location Service (#33667)
Ref: https://aws.amazon.com/about-aws/whats-new/2025/02/amazon-location-service-supports-privatelink/ ```sh % aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*geo*" --region us-east-1 --query "ServiceNames[]" [ "com.amazonaws.us-east-1.geo.geofencing", "com.amazonaws.us-east-1.geo.maps", "com.amazonaws.us-east-1.geo.metadata", "com.amazonaws.us-east-1.geo.places", "com.amazonaws.us-east-1.geo.routes", "com.amazonaws.us-east-1.geo.tracking" ] ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 6ed7a45 commit 4bc151b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts

+6
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,12 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
489489
public static readonly LICENSE_MANAGER_LINUX_SUBSCRIPTIONS = new InterfaceVpcEndpointAwsService('license-manager-linux-subscriptions');
490490
public static readonly LICENSE_MANAGER_LINUX_SUBSCRIPTIONS_FIPS = new InterfaceVpcEndpointAwsService('license-manager-linux-subscriptions-fips');
491491
public static readonly LICENSE_MANAGER_USER_SUBSCRIPTIONS = new InterfaceVpcEndpointAwsService('license-manager-user-subscriptions');
492+
public static readonly LOCATION_SERVICE_GEOFENCING = new InterfaceVpcEndpointAwsService('geo.geofencing');
493+
public static readonly LOCATION_SERVICE_MAPS = new InterfaceVpcEndpointAwsService('geo.maps');
494+
public static readonly LOCATION_SERVICE_METADATA = new InterfaceVpcEndpointAwsService('geo.metadata');
495+
public static readonly LOCATION_SERVICE_PLACES = new InterfaceVpcEndpointAwsService('geo.places');
496+
public static readonly LOCATION_SERVICE_ROUTE = new InterfaceVpcEndpointAwsService('geo.routes');
497+
public static readonly LOCATION_SERVICE_TRACKING = new InterfaceVpcEndpointAwsService('geo.tracking');
492498
public static readonly LOOKOUT_EQUIPMENT = new InterfaceVpcEndpointAwsService('lookoutequipment');
493499
public static readonly LOOKOUT_METRICS = new InterfaceVpcEndpointAwsService('lookoutmetrics');
494500
public static readonly LOOKOUT_VISION = new InterfaceVpcEndpointAwsService('lookoutvision');

0 commit comments

Comments
 (0)
Failed to load comments.