diff --git a/packages/@aws-cdk/aws-lambda-go-alpha/package.json b/packages/@aws-cdk/aws-lambda-go-alpha/package.json index 0ab17eed77575..2540ba1e4d673 100644 --- a/packages/@aws-cdk/aws-lambda-go-alpha/package.json +++ b/packages/@aws-cdk/aws-lambda-go-alpha/package.json @@ -4,14 +4,6 @@ "description": "The CDK Construct Library for AWS Lambda in Golang", "main": "lib/index.js", "types": "lib/index.d.ts", - "typesVersions": { - "<=3.9": { - "*": [ - ".types-compat/ts3.9/*", - ".types-compat/ts3.9/*/index.d.ts" - ] - } - }, "jsii": { "outdir": "dist", "targets": { diff --git a/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES b/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES index a0612ecc1c6c1..5b75f5168bd83 100644 --- a/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES +++ b/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES @@ -1,6 +1,6 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/licensing: -** @jsii/check-node@1.78.1 - https://www.npmjs.com/package/@jsii/check-node/v/1.78.1 | Apache-2.0 +** @jsii/check-node@1.80.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.80.0 | Apache-2.0 jsii Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. @@ -268,7 +268,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE ---------------- -** aws-sdk@2.1367.0 - https://www.npmjs.com/package/aws-sdk/v/2.1367.0 | Apache-2.0 +** aws-sdk@2.1373.0 - https://www.npmjs.com/package/aws-sdk/v/2.1373.0 | Apache-2.0 AWS SDK for JavaScript Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/packages/aws-cdk-lib/aws-backupgateway/.jsiirc.json b/packages/aws-cdk-lib/aws-backupgateway/.jsiirc.json new file mode 100644 index 0000000000000..da087046f85d3 --- /dev/null +++ b/packages/aws-cdk-lib/aws-backupgateway/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.backupgateway" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.BackupGateway" + }, + "python": { + "module": "aws_cdk.aws_backupgateway" + } + } +} diff --git a/packages/aws-cdk-lib/aws-backupgateway/index.ts b/packages/aws-cdk-lib/aws-backupgateway/index.ts new file mode 100644 index 0000000000000..0a1cd729250e9 --- /dev/null +++ b/packages/aws-cdk-lib/aws-backupgateway/index.ts @@ -0,0 +1,2 @@ +// AWS::BackupGateway Cloudformation Resources +export * from './lib/backupgateway.generated' diff --git a/packages/aws-cdk-lib/aws-proton/.jsiirc.json b/packages/aws-cdk-lib/aws-proton/.jsiirc.json new file mode 100644 index 0000000000000..c85aea0ed7b07 --- /dev/null +++ b/packages/aws-cdk-lib/aws-proton/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.proton" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.Proton" + }, + "python": { + "module": "aws_cdk.aws_proton" + } + } +} diff --git a/packages/aws-cdk-lib/aws-proton/index.ts b/packages/aws-cdk-lib/aws-proton/index.ts new file mode 100644 index 0000000000000..f3bbfaf606555 --- /dev/null +++ b/packages/aws-cdk-lib/aws-proton/index.ts @@ -0,0 +1,2 @@ +// AWS::Proton Cloudformation Resources +export * from './lib/proton.generated' diff --git a/packages/aws-cdk-lib/index.ts b/packages/aws-cdk-lib/index.ts index f5783728d116a..22afff6c889fa 100644 --- a/packages/aws-cdk-lib/index.ts +++ b/packages/aws-cdk-lib/index.ts @@ -249,4 +249,6 @@ export * as lambda_layer_kubectl from './lambda-layer-kubectl'; export * as lambda_layer_node_proxy_agent from './lambda-layer-node-proxy-agent'; export * as pipelines from './pipelines'; export * as region_info from './region-info'; -export * as triggers from './triggers'; \ No newline at end of file +export * as triggers from './triggers'; +export * as aws_backupgateway from './aws-backupgateway'; +export * as aws_proton from './aws-proton'; \ No newline at end of file diff --git a/packages/aws-cdk-lib/package.json b/packages/aws-cdk-lib/package.json index 07e678849ad3b..6b8d946fb63ae 100644 --- a/packages/aws-cdk-lib/package.json +++ b/packages/aws-cdk-lib/package.json @@ -442,7 +442,9 @@ "./aws-kinesisfirehose/lib/kinesisfirehose-canned-metrics.generated": "./aws-kinesisfirehose/lib/kinesisfirehose-canned-metrics.generated.js", "./aws-synthetics/lib/synthetics-canned-metrics.generated": "./aws-synthetics/lib/synthetics-canned-metrics.generated.js", "./aws-gamelift/lib/gamelift-canned-metrics.generated": "./aws-gamelift/lib/gamelift-canned-metrics.generated.js", - "./core": "./core/index.js" + "./core": "./core/index.js", + "./aws-backupgateway": "./aws-backupgateway/index.js", + "./aws-proton": "./aws-proton/index.js" }, "preferredCdkCliVersion": "2", "publishConfig": { diff --git a/packages/aws-cdk-lib/scripts/scope-map.json b/packages/aws-cdk-lib/scripts/scope-map.json index 02e6a3ad1b40a..53474787d72c9 100644 --- a/packages/aws-cdk-lib/scripts/scope-map.json +++ b/packages/aws-cdk-lib/scripts/scope-map.json @@ -650,5 +650,11 @@ ], "core": [ "AWS::CloudFormation" + ], + "aws-backupgateway": [ + "AWS::BackupGateway" + ], + "aws-proton": [ + "AWS::Proton" ] } diff --git a/yarn.lock b/yarn.lock index 4762fb812aa4d..05b6b78bd7b79 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3540,7 +3540,7 @@ console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control- resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== -constructs@^10.0.0, constructs@^10.2.17: +constructs@^10.0.0: version "10.2.17" resolved "https://registry.npmjs.org/constructs/-/constructs-10.2.17.tgz#3d3f233ca583fc6ba18611f11232c6d2be280928" integrity sha512-D3a/+iKMkBj8Elf1NIl1jBNIrK07Pg7ICBe5QEgtEKYEZOuHQvlCK9PK1f87SQ+GhtOnwSyvP+q+Pq5zBLu5kg==