Skip to content

Commit 5fcbe2a

Browse files
authored
chore(ec2): add VPC interface endpoints for Security Lake (#33728)
### Reason for this change There was no VPC Endpoint for Security Lake. $ aws ec2 describe-vpc-endpoint-services --filters "Name=service-name,Values=*securitylake*" --region us-east-1 --query "ServiceNames[]" [ "com.amazonaws.us-east-1.securitylake", "com.amazonaws.us-east-1.securitylake-fips" ] ### 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)
1 parent d1a8cbe commit 5fcbe2a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,8 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
603603
public static readonly SAGEMAKER_STUDIO = new InterfaceVpcEndpointAwsService('studio', 'aws.sagemaker');
604604
public static readonly SECRETS_MANAGER = new InterfaceVpcEndpointAwsService('secretsmanager');
605605
public static readonly SECURITYHUB = new InterfaceVpcEndpointAwsService('securityhub');
606+
public static readonly SECURITYLAKE = new InterfaceVpcEndpointAwsService('securitylake');
607+
public static readonly SECURITYLAKE_FIPS = new InterfaceVpcEndpointAwsService('securitylake-fips');
606608
public static readonly SERVICE_CATALOG = new InterfaceVpcEndpointAwsService('servicecatalog');
607609
public static readonly SERVICE_CATALOG_APPREGISTRY = new InterfaceVpcEndpointAwsService('servicecatalog-appregistry');
608610
public static readonly SERVER_MIGRATION_SERVICE = new InterfaceVpcEndpointAwsService('sms');

0 commit comments

Comments
 (0)