Skip to content

Commit e5d846f

Browse files
authored
chore(ec2): support interface VPC endpoint for RAM (#31384)
Add interface VPC endpoint for Resource Access Manager. Ref: * https://aws.amazon.com/about-aws/whats-new/2024/09/aws-resource-access-manager-privatelink/ * https://docs.aws.amazon.com/vpc/latest/privatelink/aws-services-privatelink-support.html ### 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 8e92185 commit e5d846f

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
@@ -538,6 +538,7 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
538538
public static readonly REKOGNITION_STREAMING = new InterfaceVpcEndpointAwsService('streaming-rekognition');
539539
public static readonly REKOGNITION_STREAMING_FIPS = new InterfaceVpcEndpointAwsService('streaming-rekognition-fips');
540540
public static readonly REPOST_SPACE = new InterfaceVpcEndpointAwsService('repostspace');
541+
public static readonly RESOURCE_ACCESS_MANAGER = new InterfaceVpcEndpointAwsService('ram');
541542
public static readonly ROBOMAKER = new InterfaceVpcEndpointAwsService('robomaker');
542543
public static readonly RECYCLE_BIN = new InterfaceVpcEndpointAwsService('rbin');
543544
public static readonly S3 = new InterfaceVpcEndpointAwsService('s3');

0 commit comments

Comments
 (0)