Code Deploy VPC Service Endpoint Missing #22929
-
Hi! Is there no Code Deploy VPC Service Endpoint defined in |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
As extra reference, these are the endpoints: |
Beta Was this translation helpful? Give feedback.
-
Actually this works: |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Actually this works:
service: new cdk.aws_ec2.InterfaceVpcEndpointAwsService("codedeploy"),
There is just no static variable listed for that one:
https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-ec2/lib/vpc-endpoint.ts#L260
Adding one for Code Deploy could allow a service endpoint to be created like this:
service: cdk.aws_ec2.InterfaceVpcEndpointAwsService.CODE_DEPLOY
Which is more in line with the other services.