Skip to content

Commit 25619a0

Browse files
chore(ec2): add VPC interface endpoints for Emr Serverless (#33715)
Ref: https://aws.amazon.com/about-aws/whats-new/2025/02/amazon-location-service-supports-privatelink/ ``` $ aws ec2 describe-vpc-endpoint-services --filters Name=service-type,Values=Interface Name=owner,Values=amazon --region us-east-1 --query ServiceNames | jq -r '.[] | select(. == "com.amazonaws.us-east-1.emr-serverless.dashboard")' com.amazonaws.us-east-1.emr-serverless.dashboard ``` ### Checklist - [ ] 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 b48a5ad commit 25619a0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
413413
public static readonly EMR_EKS = new InterfaceVpcEndpointAwsService('emr-containers');
414414
public static readonly EMR_SERVERLESS = new InterfaceVpcEndpointAwsService('emr-serverless');
415415
public static readonly EMR_SERVERLESS_LIVY = new InterfaceVpcEndpointAwsService('emr-serverless-services.livy');
416+
public static readonly EMR_SERVERLESS_DASHBOARD = new InterfaceVpcEndpointAwsService('emr-serverless.dashboard');
416417
public static readonly EMR_WAL = new InterfaceVpcEndpointAwsService('emrwal.prod');
417418
public static readonly END_USER_MESSAGING_SOCIAL = new InterfaceVpcEndpointAwsService('social-messaging');
418419
public static readonly ENTITY_RESOLUTION = new InterfaceVpcEndpointAwsService('entityresolution');

0 commit comments

Comments
 (0)