Skip to content

Commit c8627ce

Browse files
authored
fix(apigatewayv2): export newly graduated apigatewayv2 modules (#28250)
The API Gateway V2 modules which were graduated to stable with [2.112.0](https://github.com/aws/aws-cdk/releases/tag/v2.112.0) were not added to the main package exports. In particular: - aws-apigatewayv2-authorizers - aws-apigatewayv2-integrations Closes #28239. Now, I am not completely familiar with JSII and the CDK, so this may be only one part of the required solution to include these missing packages. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 7208b8f commit c8627ce

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/aws-cdk-lib/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export * as aws_amplify from './aws-amplify';
88
export * as aws_amplifyuibuilder from './aws-amplifyuibuilder';
99
export * as aws_apigateway from './aws-apigateway';
1010
export * as aws_apigatewayv2 from './aws-apigatewayv2';
11+
export * as aws_apigatewayv2_authorizers from './aws-apigatewayv2-authorizers';
12+
export * as aws_apigatewayv2_integrations from './aws-apigatewayv2-integrations';
1113
export * as aws_appconfig from './aws-appconfig';
1214
export * as aws_appflow from './aws-appflow';
1315
export * as aws_appintegrations from './aws-appintegrations';

0 commit comments

Comments
 (0)