Skip to content

Commit 088537c

Browse files
authored
Merge branch 'main' into upgrade-assembly-to-41.2
2 parents fd2957b + 24a40a9 commit 088537c

File tree

9 files changed

+78
-18
lines changed

9 files changed

+78
-18
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"targets": {
3+
"java": {
4+
"package": "software.amazon.awscdk.services.ssmguiconnect"
5+
},
6+
"dotnet": {
7+
"package": "Amazon.CDK.AWS.SSMGuiConnect"
8+
},
9+
"python": {
10+
"module": "aws_cdk.aws_ssmguiconnect"
11+
}
12+
}
13+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# AWS::SSMGuiConnect Construct Library
2+
<!--BEGIN STABILITY BANNER-->
3+
4+
---
5+
6+
![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge)
7+
8+
> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use.
9+
>
10+
> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib
11+
12+
---
13+
14+
<!--END STABILITY BANNER-->
15+
16+
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
17+
18+
```ts nofixture
19+
import * as ssmguiconnect from 'aws-cdk-lib/aws-ssmguiconnect';
20+
```
21+
22+
<!--BEGIN CFNONLY DISCLAIMER-->
23+
24+
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:
25+
26+
- Search [Construct Hub for SSMGuiConnect construct libraries](https://constructs.dev/search?q=ssmguiconnect)
27+
- 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::SSMGuiConnect resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SSMGuiConnect.html) directly.
28+
29+
30+
<!--BEGIN CFNONLY DISCLAIMER-->
31+
32+
There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet.
33+
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.
34+
35+
For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::SSMGuiConnect](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SSMGuiConnect.html).
36+
37+
(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.)
38+
39+
<!--END CFNONLY DISCLAIMER-->
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './lib';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// AWS::SSMGuiConnect Cloudformation Resources
2+
export * from './ssmguiconnect.generated';

packages/aws-cdk-lib/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ export * as aws_sns_subscriptions from './aws-sns-subscriptions';
261261
export * as aws_sqs from './aws-sqs';
262262
export * as aws_ssm from './aws-ssm';
263263
export * as aws_ssmcontacts from './aws-ssmcontacts';
264+
export * as aws_ssmguiconnect from './aws-ssmguiconnect';
264265
export * as aws_ssmincidents from './aws-ssmincidents';
265266
export * as aws_ssmquicksetup from './aws-ssmquicksetup';
266267
export * as aws_sso from './aws-sso';

packages/aws-cdk-lib/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
},
137137
"devDependencies": {
138138
"@aws-cdk/lambda-layer-kubectl-v31": "^2.0.3",
139-
"@aws-cdk/aws-service-spec": "^0.1.70",
139+
"@aws-cdk/aws-service-spec": "^0.1.71",
140140
"@aws-cdk/cdk-build-tools": "0.0.0",
141141
"@aws-cdk/custom-resource-handlers": "0.0.0",
142142
"@aws-cdk/pkglint": "0.0.0",
@@ -477,6 +477,7 @@
477477
"./aws-sqs": "./aws-sqs/index.js",
478478
"./aws-ssm": "./aws-ssm/index.js",
479479
"./aws-ssmcontacts": "./aws-ssmcontacts/index.js",
480+
"./aws-ssmguiconnect": "./aws-ssmguiconnect/index.js",
480481
"./aws-ssmincidents": "./aws-ssmincidents/index.js",
481482
"./aws-ssmquicksetup": "./aws-ssmquicksetup/index.js",
482483
"./aws-sso": "./aws-sso/index.js",

packages/aws-cdk-lib/scripts/scope-map.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,9 @@
705705
"aws-ssmcontacts": [
706706
"AWS::SSMContacts"
707707
],
708+
"aws-ssmguiconnect": [
709+
"AWS::SSMGuiConnect"
710+
],
708711
"aws-ssmincidents": [
709712
"AWS::SSMIncidents"
710713
],

tools/@aws-cdk/spec2cdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
},
3333
"license": "Apache-2.0",
3434
"dependencies": {
35-
"@aws-cdk/aws-service-spec": "^0.1.70",
36-
"@aws-cdk/service-spec-importers": "^0.0.77",
37-
"@aws-cdk/service-spec-types": "^0.0.136",
35+
"@aws-cdk/aws-service-spec": "^0.1.71",
36+
"@aws-cdk/service-spec-importers": "^0.0.78",
37+
"@aws-cdk/service-spec-types": "^0.0.137",
3838
"@cdklabs/tskb": "^0.0.3",
3939
"@cdklabs/typewriter": "^0.0.5",
4040
"camelcase": "^6",

yarn.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@
6666
"@aws-cdk/service-spec-types" "^0.0.128"
6767
"@cdklabs/tskb" "^0.0.3"
6868

69-
"@aws-cdk/aws-service-spec@^0.1.70":
70-
version "0.1.70"
71-
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.70.tgz#9a571050fb86a55254137d19e498d621e0ad752c"
72-
integrity sha512-0n/KC2Qjp3Sh64Eir/Ew6NAooWnunTuYbsnvH0TT5xw8fcjy6S5UjECM4l3Wo+tZZRViiM/Olz5Bh5pe8YGjYQ==
69+
"@aws-cdk/aws-service-spec@^0.1.71":
70+
version "0.1.71"
71+
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.71.tgz#8ebc0e428c588bd362bc46abd372c91a1e5e1370"
72+
integrity sha512-tSDXj6tdy+k1whXJppJH3ireaP57H6ENYPyLscevT6EesdETzwm0kLJdzykcRGAUl0lDrEoIqRpylceN6wKSOQ==
7373
dependencies:
74-
"@aws-cdk/service-spec-types" "^0.0.136"
74+
"@aws-cdk/service-spec-types" "^0.0.137"
7575
"@cdklabs/tskb" "^0.0.3"
7676

7777
"@aws-cdk/cloud-assembly-schema@^41.2.0":
@@ -117,12 +117,12 @@
117117
resolved "https://registry.npmjs.org/@aws-cdk/lambda-layer-kubectl-v32/-/lambda-layer-kubectl-v32-2.1.0.tgz#6b9beb4b6b09af74ec48f0c778e50732d7bbb54b"
118118
integrity sha512-a+zvCLapTg8R0P/Nrecc8mKV+ZgAwvkndn4/zlb43e14zRlc4/ozvmeghUT2eoyyaWJv+PwqgWohEXXec3kpSw==
119119

120-
"@aws-cdk/service-spec-importers@^0.0.77":
121-
version "0.0.77"
122-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.77.tgz#162defcda6c082f0a5aee8073af2cf483151727a"
123-
integrity sha512-bHrjtblwR7ncg0cVYH8QP/tg01K5dunXJfPx5XkOpp95ntQf3pRJym9vCaBcoMJaIUgniRINzGPGX+4fXK3k0g==
120+
"@aws-cdk/service-spec-importers@^0.0.78":
121+
version "0.0.78"
122+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.78.tgz#344e7b10965d95c2793c15233fa6d2cf8d4456c9"
123+
integrity sha512-mua9t4ZFzu9oeRA1UTu1bzGR9CHR4FazhM4Ik0HS7yUGz3rT43eL9VxkecMGqrU8e8gSLa44xzJn0m+DWyq+Sw==
124124
dependencies:
125-
"@aws-cdk/service-spec-types" "^0.0.136"
125+
"@aws-cdk/service-spec-types" "^0.0.137"
126126
"@cdklabs/tskb" "^0.0.3"
127127
ajv "^6"
128128
canonicalize "^2.1.0"
@@ -140,10 +140,10 @@
140140
dependencies:
141141
"@cdklabs/tskb" "^0.0.3"
142142

143-
"@aws-cdk/service-spec-types@^0.0.136":
144-
version "0.0.136"
145-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.136.tgz#01a92c67ce8f0b4c5aef32f505b5dea2279d93c3"
146-
integrity sha512-UfImDNLeFNajxejKAnwdP8SWMNDYyQ3uDJB+AGsz1Sp4R5k1M7Ylq+EYWNfYJZYxY0vp7JsAyDNtjleVwsxyvw==
143+
"@aws-cdk/service-spec-types@^0.0.137":
144+
version "0.0.137"
145+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.137.tgz#b953ac8d636d89c6986d94a0887c8e77c89981bd"
146+
integrity sha512-hOCLfa4Gid4Gh3cl4Kgxe2tOqcMKJrhTRuOJ4XFfeKELGG6EYCdG3fVlCthP3WncvSls+X5gfoKolnLhH0SIIw==
147147
dependencies:
148148
"@cdklabs/tskb" "^0.0.3"
149149

0 commit comments

Comments
 (0)