From 3b7a1e3318ad6bc8bb27daa3445318798cbaa926 Mon Sep 17 00:00:00 2001 From: aws-cdk-automation Date: Wed, 20 Sep 2023 12:41:49 +0000 Subject: [PATCH] feat: update AWS Service Spec AWS Service Spec packages to latest versions. --- .../aws-entityresolution/.jsiirc.json | 13 +++++++ .../aws-entityresolution/README.md | 39 +++++++++++++++++++ .../aws-cdk-lib/aws-entityresolution/index.ts | 1 + .../aws-entityresolution/lib/index.ts | 2 + .../aws-mediapackagev2/.jsiirc.json | 13 +++++++ .../aws-cdk-lib/aws-mediapackagev2/README.md | 39 +++++++++++++++++++ .../aws-cdk-lib/aws-mediapackagev2/index.ts | 1 + .../aws-mediapackagev2/lib/index.ts | 2 + .../aws-pcaconnectorad/.jsiirc.json | 13 +++++++ .../aws-cdk-lib/aws-pcaconnectorad/README.md | 39 +++++++++++++++++++ .../aws-cdk-lib/aws-pcaconnectorad/index.ts | 1 + .../aws-pcaconnectorad/lib/index.ts | 2 + .../aws-workspacesweb/.jsiirc.json | 13 +++++++ .../aws-cdk-lib/aws-workspacesweb/README.md | 39 +++++++++++++++++++ .../aws-cdk-lib/aws-workspacesweb/index.ts | 1 + .../aws-workspacesweb/lib/index.ts | 2 + packages/aws-cdk-lib/index.ts | 4 ++ packages/aws-cdk-lib/lazy-index.ts | 4 ++ packages/aws-cdk-lib/package.json | 4 ++ packages/aws-cdk-lib/scripts/scope-map.json | 12 ++++++ 20 files changed, 244 insertions(+) create mode 100644 packages/aws-cdk-lib/aws-entityresolution/.jsiirc.json create mode 100644 packages/aws-cdk-lib/aws-entityresolution/README.md create mode 100644 packages/aws-cdk-lib/aws-entityresolution/index.ts create mode 100644 packages/aws-cdk-lib/aws-entityresolution/lib/index.ts create mode 100644 packages/aws-cdk-lib/aws-mediapackagev2/.jsiirc.json create mode 100644 packages/aws-cdk-lib/aws-mediapackagev2/README.md create mode 100644 packages/aws-cdk-lib/aws-mediapackagev2/index.ts create mode 100644 packages/aws-cdk-lib/aws-mediapackagev2/lib/index.ts create mode 100644 packages/aws-cdk-lib/aws-pcaconnectorad/.jsiirc.json create mode 100644 packages/aws-cdk-lib/aws-pcaconnectorad/README.md create mode 100644 packages/aws-cdk-lib/aws-pcaconnectorad/index.ts create mode 100644 packages/aws-cdk-lib/aws-pcaconnectorad/lib/index.ts create mode 100644 packages/aws-cdk-lib/aws-workspacesweb/.jsiirc.json create mode 100644 packages/aws-cdk-lib/aws-workspacesweb/README.md create mode 100644 packages/aws-cdk-lib/aws-workspacesweb/index.ts create mode 100644 packages/aws-cdk-lib/aws-workspacesweb/lib/index.ts diff --git a/packages/aws-cdk-lib/aws-entityresolution/.jsiirc.json b/packages/aws-cdk-lib/aws-entityresolution/.jsiirc.json new file mode 100644 index 0000000000000..429b91f572e17 --- /dev/null +++ b/packages/aws-cdk-lib/aws-entityresolution/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.entityresolution" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.EntityResolution" + }, + "python": { + "module": "aws_cdk.aws_entityresolution" + } + } +} diff --git a/packages/aws-cdk-lib/aws-entityresolution/README.md b/packages/aws-cdk-lib/aws-entityresolution/README.md new file mode 100644 index 0000000000000..e25c52494c7e8 --- /dev/null +++ b/packages/aws-cdk-lib/aws-entityresolution/README.md @@ -0,0 +1,39 @@ +# AWS::EntityResolution Construct Library + + +--- + +![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge) + +> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use. +> +> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib + +--- + + + +This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project. + +```ts nofixture +import * as entityresolution from 'aws-cdk-lib/aws-entityresolution'; +``` + + + +There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed: + +- Search [Construct Hub for EntityResolution construct libraries](https://constructs.dev/search?q=entityresolution) +- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::EntityResolution resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_EntityResolution.html) directly. + + + + +There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. +However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly. + +For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::EntityResolution](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_EntityResolution.html). + +(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.) + + diff --git a/packages/aws-cdk-lib/aws-entityresolution/index.ts b/packages/aws-cdk-lib/aws-entityresolution/index.ts new file mode 100644 index 0000000000000..f41a696fd204d --- /dev/null +++ b/packages/aws-cdk-lib/aws-entityresolution/index.ts @@ -0,0 +1 @@ +export * from './lib'; diff --git a/packages/aws-cdk-lib/aws-entityresolution/lib/index.ts b/packages/aws-cdk-lib/aws-entityresolution/lib/index.ts new file mode 100644 index 0000000000000..ab18818262fce --- /dev/null +++ b/packages/aws-cdk-lib/aws-entityresolution/lib/index.ts @@ -0,0 +1,2 @@ +// AWS::EntityResolution Cloudformation Resources +export * from './entityresolution.generated'; diff --git a/packages/aws-cdk-lib/aws-mediapackagev2/.jsiirc.json b/packages/aws-cdk-lib/aws-mediapackagev2/.jsiirc.json new file mode 100644 index 0000000000000..81603d258f333 --- /dev/null +++ b/packages/aws-cdk-lib/aws-mediapackagev2/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.mediapackagev2" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.MediaPackageV2" + }, + "python": { + "module": "aws_cdk.aws_mediapackagev2" + } + } +} diff --git a/packages/aws-cdk-lib/aws-mediapackagev2/README.md b/packages/aws-cdk-lib/aws-mediapackagev2/README.md new file mode 100644 index 0000000000000..dc8f3e854e896 --- /dev/null +++ b/packages/aws-cdk-lib/aws-mediapackagev2/README.md @@ -0,0 +1,39 @@ +# AWS::MediaPackageV2 Construct Library + + +--- + +![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge) + +> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use. +> +> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib + +--- + + + +This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project. + +```ts nofixture +import * as mediapackage from 'aws-cdk-lib/aws-mediapackagev2'; +``` + + + +There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed: + +- Search [Construct Hub for MediaPackageV2 construct libraries](https://constructs.dev/search?q=mediapackagev2) +- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::MediaPackageV2 resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_MediaPackageV2.html) directly. + + + + +There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. +However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly. + +For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::MediaPackageV2](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_MediaPackageV2.html). + +(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.) + + diff --git a/packages/aws-cdk-lib/aws-mediapackagev2/index.ts b/packages/aws-cdk-lib/aws-mediapackagev2/index.ts new file mode 100644 index 0000000000000..f41a696fd204d --- /dev/null +++ b/packages/aws-cdk-lib/aws-mediapackagev2/index.ts @@ -0,0 +1 @@ +export * from './lib'; diff --git a/packages/aws-cdk-lib/aws-mediapackagev2/lib/index.ts b/packages/aws-cdk-lib/aws-mediapackagev2/lib/index.ts new file mode 100644 index 0000000000000..d986bb06d0fcb --- /dev/null +++ b/packages/aws-cdk-lib/aws-mediapackagev2/lib/index.ts @@ -0,0 +1,2 @@ +// AWS::MediaPackageV2 Cloudformation Resources +export * from './mediapackagev2.generated'; diff --git a/packages/aws-cdk-lib/aws-pcaconnectorad/.jsiirc.json b/packages/aws-cdk-lib/aws-pcaconnectorad/.jsiirc.json new file mode 100644 index 0000000000000..65613c9537b59 --- /dev/null +++ b/packages/aws-cdk-lib/aws-pcaconnectorad/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.pcaconnectorad" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.PCAConnectorAD" + }, + "python": { + "module": "aws_cdk.aws_pcaconnectorad" + } + } +} diff --git a/packages/aws-cdk-lib/aws-pcaconnectorad/README.md b/packages/aws-cdk-lib/aws-pcaconnectorad/README.md new file mode 100644 index 0000000000000..0b2600c585db4 --- /dev/null +++ b/packages/aws-cdk-lib/aws-pcaconnectorad/README.md @@ -0,0 +1,39 @@ +# AWS::PCAConnectorAD Construct Library + + +--- + +![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge) + +> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use. +> +> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib + +--- + + + +This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project. + +```ts nofixture +import * as pcaconnectorad from 'aws-cdk-lib/aws-pcaconnectorad'; +``` + + + +There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed: + +- Search [Construct Hub for PCAConnectorAD construct libraries](https://constructs.dev/search?q=pcaconnectorad) +- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::PCAConnectorAD resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_PCAConnectorAD.html) directly. + + + + +There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. +However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly. + +For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::PCAConnectorAD](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_PCAConnectorAD.html). + +(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.) + + diff --git a/packages/aws-cdk-lib/aws-pcaconnectorad/index.ts b/packages/aws-cdk-lib/aws-pcaconnectorad/index.ts new file mode 100644 index 0000000000000..f41a696fd204d --- /dev/null +++ b/packages/aws-cdk-lib/aws-pcaconnectorad/index.ts @@ -0,0 +1 @@ +export * from './lib'; diff --git a/packages/aws-cdk-lib/aws-pcaconnectorad/lib/index.ts b/packages/aws-cdk-lib/aws-pcaconnectorad/lib/index.ts new file mode 100644 index 0000000000000..297f58266e633 --- /dev/null +++ b/packages/aws-cdk-lib/aws-pcaconnectorad/lib/index.ts @@ -0,0 +1,2 @@ +// AWS::PCAConnectorAD Cloudformation Resources +export * from './pcaconnectorad.generated'; diff --git a/packages/aws-cdk-lib/aws-workspacesweb/.jsiirc.json b/packages/aws-cdk-lib/aws-workspacesweb/.jsiirc.json new file mode 100644 index 0000000000000..daa2d4ee94aaa --- /dev/null +++ b/packages/aws-cdk-lib/aws-workspacesweb/.jsiirc.json @@ -0,0 +1,13 @@ +{ + "targets": { + "java": { + "package": "services.workspacesweb" + }, + "dotnet": { + "package": "Amazon.CDK.AWS.WorkSpacesWeb" + }, + "python": { + "module": "aws_cdk.aws_workspacesweb" + } + } +} diff --git a/packages/aws-cdk-lib/aws-workspacesweb/README.md b/packages/aws-cdk-lib/aws-workspacesweb/README.md new file mode 100644 index 0000000000000..a1c916509e5d1 --- /dev/null +++ b/packages/aws-cdk-lib/aws-workspacesweb/README.md @@ -0,0 +1,39 @@ +# AWS::WorkSpacesWeb Construct Library + + +--- + +![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge) + +> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use. +> +> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib + +--- + + + +This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project. + +```ts nofixture +import * as workspacesweb from 'aws-cdk-lib/aws-workspacesweb'; +``` + + + +There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed: + +- Search [Construct Hub for WorkSpacesWeb construct libraries](https://constructs.dev/search?q=workspacesweb) +- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::WorkSpacesWeb resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_WorkSpacesWeb.html) directly. + + + + +There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. +However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly. + +For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::WorkSpacesWeb](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_WorkSpacesWeb.html). + +(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.) + + diff --git a/packages/aws-cdk-lib/aws-workspacesweb/index.ts b/packages/aws-cdk-lib/aws-workspacesweb/index.ts new file mode 100644 index 0000000000000..f41a696fd204d --- /dev/null +++ b/packages/aws-cdk-lib/aws-workspacesweb/index.ts @@ -0,0 +1 @@ +export * from './lib'; diff --git a/packages/aws-cdk-lib/aws-workspacesweb/lib/index.ts b/packages/aws-cdk-lib/aws-workspacesweb/lib/index.ts new file mode 100644 index 0000000000000..1bde50d0d855f --- /dev/null +++ b/packages/aws-cdk-lib/aws-workspacesweb/lib/index.ts @@ -0,0 +1,2 @@ +// AWS::WorkSpacesWeb Cloudformation Resources +export * from './workspacesweb.generated'; diff --git a/packages/aws-cdk-lib/index.ts b/packages/aws-cdk-lib/index.ts index ad54b85e1e849..296e902bafb0a 100644 --- a/packages/aws-cdk-lib/index.ts +++ b/packages/aws-cdk-lib/index.ts @@ -90,6 +90,7 @@ export * as aws_elasticsearch from './aws-elasticsearch'; export * as aws_emr from './aws-emr'; export * as aws_emrcontainers from './aws-emrcontainers'; export * as aws_emrserverless from './aws-emrserverless'; +export * as aws_entityresolution from './aws-entityresolution'; export * as aws_events from './aws-events'; export * as aws_events_targets from './aws-events-targets'; export * as aws_eventschemas from './aws-eventschemas'; @@ -159,6 +160,7 @@ export * as aws_mediaconnect from './aws-mediaconnect'; export * as aws_mediaconvert from './aws-mediaconvert'; export * as aws_medialive from './aws-medialive'; export * as aws_mediapackage from './aws-mediapackage'; +export * as aws_mediapackagev2 from './aws-mediapackagev2'; export * as aws_mediastore from './aws-mediastore'; export * as aws_mediatailor from './aws-mediatailor'; export * as aws_memorydb from './aws-memorydb'; @@ -177,6 +179,7 @@ export * as aws_opsworkscm from './aws-opsworkscm'; export * as aws_organizations from './aws-organizations'; export * as aws_osis from './aws-osis'; export * as aws_panorama from './aws-panorama'; +export * as aws_pcaconnectorad from './aws-pcaconnectorad'; export * as aws_personalize from './aws-personalize'; export * as aws_pinpoint from './aws-pinpoint'; export * as aws_pinpointemail from './aws-pinpointemail'; @@ -244,6 +247,7 @@ export * as aws_wafregional from './aws-wafregional'; export * as aws_wafv2 from './aws-wafv2'; export * as aws_wisdom from './aws-wisdom'; export * as aws_workspaces from './aws-workspaces'; +export * as aws_workspacesweb from './aws-workspacesweb'; export * as aws_xray from './aws-xray'; export * as cloud_assembly_schema from './cloud-assembly-schema'; export * as cloudformation_include from './cloudformation-include'; diff --git a/packages/aws-cdk-lib/lazy-index.ts b/packages/aws-cdk-lib/lazy-index.ts index 1369fd6fd8f31..28b4358e31449 100644 --- a/packages/aws-cdk-lib/lazy-index.ts +++ b/packages/aws-cdk-lib/lazy-index.ts @@ -92,6 +92,7 @@ Object.defineProperty(exports, 'aws_elasticsearch', { get: function () { return Object.defineProperty(exports, 'aws_emr', { get: function () { return require('./aws-emr'); } }); Object.defineProperty(exports, 'aws_emrcontainers', { get: function () { return require('./aws-emrcontainers'); } }); Object.defineProperty(exports, 'aws_emrserverless', { get: function () { return require('./aws-emrserverless'); } }); +Object.defineProperty(exports, 'aws_entityresolution', { get: function () { return require('./aws-entityresolution'); } }); Object.defineProperty(exports, 'aws_events_targets', { get: function () { return require('./aws-events-targets'); } }); Object.defineProperty(exports, 'aws_events', { get: function () { return require('./aws-events'); } }); Object.defineProperty(exports, 'aws_eventschemas', { get: function () { return require('./aws-eventschemas'); } }); @@ -161,6 +162,7 @@ Object.defineProperty(exports, 'aws_mediaconnect', { get: function () { return r Object.defineProperty(exports, 'aws_mediaconvert', { get: function () { return require('./aws-mediaconvert'); } }); Object.defineProperty(exports, 'aws_medialive', { get: function () { return require('./aws-medialive'); } }); Object.defineProperty(exports, 'aws_mediapackage', { get: function () { return require('./aws-mediapackage'); } }); +Object.defineProperty(exports, 'aws_mediapackagev2', { get: function () { return require('./aws-mediapackagev2'); } }); Object.defineProperty(exports, 'aws_mediastore', { get: function () { return require('./aws-mediastore'); } }); Object.defineProperty(exports, 'aws_mediatailor', { get: function () { return require('./aws-mediatailor'); } }); Object.defineProperty(exports, 'aws_memorydb', { get: function () { return require('./aws-memorydb'); } }); @@ -179,6 +181,7 @@ Object.defineProperty(exports, 'aws_opsworkscm', { get: function () { return req Object.defineProperty(exports, 'aws_organizations', { get: function () { return require('./aws-organizations'); } }); Object.defineProperty(exports, 'aws_osis', { get: function () { return require('./aws-osis'); } }); Object.defineProperty(exports, 'aws_panorama', { get: function () { return require('./aws-panorama'); } }); +Object.defineProperty(exports, 'aws_pcaconnectorad', { get: function () { return require('./aws-pcaconnectorad'); } }); Object.defineProperty(exports, 'aws_personalize', { get: function () { return require('./aws-personalize'); } }); Object.defineProperty(exports, 'aws_pinpoint', { get: function () { return require('./aws-pinpoint'); } }); Object.defineProperty(exports, 'aws_pinpointemail', { get: function () { return require('./aws-pinpointemail'); } }); @@ -246,6 +249,7 @@ Object.defineProperty(exports, 'aws_wafregional', { get: function () { return re Object.defineProperty(exports, 'aws_wafv2', { get: function () { return require('./aws-wafv2'); } }); Object.defineProperty(exports, 'aws_wisdom', { get: function () { return require('./aws-wisdom'); } }); Object.defineProperty(exports, 'aws_workspaces', { get: function () { return require('./aws-workspaces'); } }); +Object.defineProperty(exports, 'aws_workspacesweb', { get: function () { return require('./aws-workspacesweb'); } }); Object.defineProperty(exports, 'aws_xray', { get: function () { return require('./aws-xray'); } }); Object.defineProperty(exports, 'cloud_assembly_schema', { get: function () { return require('./cloud-assembly-schema'); } }); Object.defineProperty(exports, 'cloudformation_include', { get: function () { return require('./cloudformation-include'); } }); diff --git a/packages/aws-cdk-lib/package.json b/packages/aws-cdk-lib/package.json index 0de9bb88162ff..443c4b4686760 100644 --- a/packages/aws-cdk-lib/package.json +++ b/packages/aws-cdk-lib/package.json @@ -309,6 +309,7 @@ "./aws-emr": "./aws-emr/index.js", "./aws-emrcontainers": "./aws-emrcontainers/index.js", "./aws-emrserverless": "./aws-emrserverless/index.js", + "./aws-entityresolution": "./aws-entityresolution/index.js", "./aws-events": "./aws-events/index.js", "./aws-events-targets": "./aws-events-targets/index.js", "./aws-eventschemas": "./aws-eventschemas/index.js", @@ -380,6 +381,7 @@ "./aws-mediaconvert": "./aws-mediaconvert/index.js", "./aws-medialive": "./aws-medialive/index.js", "./aws-mediapackage": "./aws-mediapackage/index.js", + "./aws-mediapackagev2": "./aws-mediapackagev2/index.js", "./aws-mediastore": "./aws-mediastore/index.js", "./aws-mediatailor": "./aws-mediatailor/index.js", "./aws-memorydb": "./aws-memorydb/index.js", @@ -398,6 +400,7 @@ "./aws-organizations": "./aws-organizations/index.js", "./aws-osis": "./aws-osis/index.js", "./aws-panorama": "./aws-panorama/index.js", + "./aws-pcaconnectorad": "./aws-pcaconnectorad/index.js", "./aws-personalize": "./aws-personalize/index.js", "./aws-pinpoint": "./aws-pinpoint/index.js", "./aws-pinpointemail": "./aws-pinpointemail/index.js", @@ -466,6 +469,7 @@ "./aws-wafv2": "./aws-wafv2/index.js", "./aws-wisdom": "./aws-wisdom/index.js", "./aws-workspaces": "./aws-workspaces/index.js", + "./aws-workspacesweb": "./aws-workspacesweb/index.js", "./aws-xray": "./aws-xray/index.js", "./cloud-assembly-schema": "./cloud-assembly-schema/index.js", "./cloudformation-include": "./cloudformation-include/index.js", diff --git a/packages/aws-cdk-lib/scripts/scope-map.json b/packages/aws-cdk-lib/scripts/scope-map.json index 08a4b8dccd37c..7aee9e9384593 100644 --- a/packages/aws-cdk-lib/scripts/scope-map.json +++ b/packages/aws-cdk-lib/scripts/scope-map.json @@ -242,6 +242,9 @@ "aws-emrserverless": [ "AWS::EMRServerless" ], + "aws-entityresolution": [ + "AWS::EntityResolution" + ], "aws-events": [ "AWS::Events" ], @@ -432,6 +435,9 @@ "aws-mediapackage": [ "AWS::MediaPackage" ], + "aws-mediapackagev2": [ + "AWS::MediaPackageV2" + ], "aws-mediastore": [ "AWS::MediaStore" ], @@ -486,6 +492,9 @@ "aws-panorama": [ "AWS::Panorama" ], + "aws-pcaconnectorad": [ + "AWS::PCAConnectorAD" + ], "aws-personalize": [ "AWS::Personalize" ], @@ -663,6 +672,9 @@ "aws-workspaces": [ "AWS::WorkSpaces" ], + "aws-workspacesweb": [ + "AWS::WorkSpacesWeb" + ], "aws-xray": [ "AWS::XRay" ],