From c8627cef3a4f4e05c2e3d088c0903dd1a9c9ef4f Mon Sep 17 00:00:00 2001 From: Jacob Greenbow <27098866+jgreenbow@users.noreply.github.com> Date: Mon, 4 Dec 2023 16:12:58 -0700 Subject: [PATCH] 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* --- packages/aws-cdk-lib/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/aws-cdk-lib/index.ts b/packages/aws-cdk-lib/index.ts index 968ccfcdddbff..039586770d961 100644 --- a/packages/aws-cdk-lib/index.ts +++ b/packages/aws-cdk-lib/index.ts @@ -8,6 +8,8 @@ export * as aws_amplify from './aws-amplify'; export * as aws_amplifyuibuilder from './aws-amplifyuibuilder'; export * as aws_apigateway from './aws-apigateway'; export * as aws_apigatewayv2 from './aws-apigatewayv2'; +export * as aws_apigatewayv2_authorizers from './aws-apigatewayv2-authorizers'; +export * as aws_apigatewayv2_integrations from './aws-apigatewayv2-integrations'; export * as aws_appconfig from './aws-appconfig'; export * as aws_appflow from './aws-appflow'; export * as aws_appintegrations from './aws-appintegrations';