Skip to content

Commit

Permalink
chore(ec2): add verified permissions vpc interface endpoint (#27026)
Browse files Browse the repository at this point in the history
Add Verified Permissions VPC Endpoint to `InterfaceVpcEndpointAwsService` so we can create one by using class property.

see: https://docs.aws.amazon.com/verifiedpermissions/latest/userguide/vpc-interface-endpoints.html

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
clueleaf authored Sep 6, 2023
1 parent 05f3d95 commit 4ac47df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
public static readonly XRAY = new InterfaceVpcEndpointAwsService('xray');
public static readonly SECURITYHUB = new InterfaceVpcEndpointAwsService('securityhub');
public static readonly EMAIL_SMTP = new InterfaceVpcEndpointAwsService('email-smtp');
public static readonly VERIFIED_PERMISSIONS = new InterfaceVpcEndpointAwsService('verifiedpermissions');

/**
* The name of the service. e.g. com.amazonaws.us-east-1.ecs
Expand Down

0 comments on commit 4ac47df

Please sign in to comment.