chore(ec2): add VPC interface endpoints for EventBridge Scheduler - #38605
Open
amodam-user wants to merge 2 commits into
Open
chore(ec2): add VPC interface endpoints for EventBridge Scheduler#38605amodam-user wants to merge 2 commits into
amodam-user wants to merge 2 commits into
Conversation
EventBridge Scheduler supports interface VPC endpoints, but they are currently missing from InterfaceVpcEndpointAwsService. Add interface VPC endpoints: - SCHEDULER (com.amazonaws.<region>.scheduler) - SCHEDULER_FIPS (com.amazonaws.<region>.scheduler-fips) Endpoint availability confirmed via AWS docs: https://docs.aws.amazon.com/general/latest/gr/eventbridgescheduler.html Closes aws#38588
Add synth-time assertion for both SCHEDULER and SCHEDULER_FIPS ServiceName rendering in us-east-1, per maintainer feedback on aws#38588.
Author
|
@pahud thanks for the review notes on #38588. Addressed both items:
Not adding a China-region test row since Scheduler is not listed as available in |
Akshaya2612
approved these changes
Aug 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue # (if applicable)
Closes #38588
Reason for this change
EventBridge Scheduler supports interface VPC endpoints, but they are currently missing from
InterfaceVpcEndpointAwsService. Users must construct the service manually vianew InterfaceVpcEndpointAwsService('scheduler'), which is inconsistent with other services and creates a surprise sinceEVENTBRIDGEpoints atevents(a different service).Description of changes
Add interface VPC endpoints to
packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts:SCHEDULER→com.amazonaws.<region>.schedulerSCHEDULER_FIPS→com.amazonaws.<region>.scheduler-fipsEndpoint availability confirmed via AWS docs: https://docs.aws.amazon.com/general/latest/gr/eventbridgescheduler.html (FIPS endpoints available in US, GovCloud, and Canada regions).
Describe any new or updated permissions being added
None
Description of how you validated changes
Confirmed both endpoints exist per the AWS General Reference endpoints table for EventBridge Scheduler. Change mirrors the pattern used for other services (e.g.,
SAGEMAKER_RUNTIME/SAGEMAKER_RUNTIME_FIPS,COGNITO_IDENTITY/COGNITO_IDENTITY_FIPS).Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license