Skip to content

Commit f28bb0e

Browse files
feat: update L1 CloudFormation resource definitions
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
1 parent 2928e23 commit f28bb0e

15 files changed

Lines changed: 149 additions & 26 deletions

File tree

packages/@aws-cdk/cfn-property-mixins/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@
195195
"./aws-nimblestudio": "./lib/services/aws-nimblestudio/index.js",
196196
"./aws-notifications": "./lib/services/aws-notifications/index.js",
197197
"./aws-notificationscontacts": "./lib/services/aws-notificationscontacts/index.js",
198+
"./aws-novaact": "./lib/services/aws-novaact/index.js",
198199
"./aws-oam": "./lib/services/aws-oam/index.js",
199200
"./aws-observabilityadmin": "./lib/services/aws-observabilityadmin/index.js",
200201
"./aws-odb": "./lib/services/aws-odb/index.js",
@@ -249,6 +250,7 @@
249250
"./aws-scheduler": "./lib/services/aws-scheduler/index.js",
250251
"./aws-sdb": "./lib/services/aws-sdb/index.js",
251252
"./aws-secretsmanager": "./lib/services/aws-secretsmanager/index.js",
253+
"./aws-securityagent": "./lib/services/aws-securityagent/index.js",
252254
"./aws-securityhub": "./lib/services/aws-securityhub/index.js",
253255
"./aws-securitylake": "./lib/services/aws-securitylake/index.js",
254256
"./aws-servicecatalog": "./lib/services/aws-servicecatalog/index.js",

packages/@aws-cdk/mixins-preview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@
325325
"@aws-cdk/integ-runner": "^2.197.1",
326326
"@aws-cdk/integ-tests-alpha": "0.0.0",
327327
"@aws-cdk/pkglint": "0.0.0",
328-
"@aws-cdk/service-spec-types": "^0.0.233",
328+
"@aws-cdk/service-spec-types": "^0.0.236",
329329
"@aws-cdk/spec2cdk": "0.0.0",
330330
"@cdklabs/tskb": "^0.0.4",
331331
"@cdklabs/typewriter": "^0.0.16",
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.novaact"
5+
},
6+
"dotnet": {
7+
"namespace": "Amazon.CDK.AWS.NovaAct"
8+
},
9+
"python": {
10+
"module": "aws_cdk.aws_novaact"
11+
}
12+
}
13+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# AWS::NovaAct 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 novaact from 'aws-cdk-lib/aws-novaact';
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 NovaAct construct libraries](https://constructs.dev/search?q=novaact)
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::NovaAct resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_NovaAct.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::NovaAct](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_NovaAct.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::NovaAct Cloudformation Resources
2+
export * from './novaact.generated';
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.securityagent"
5+
},
6+
"dotnet": {
7+
"namespace": "Amazon.CDK.AWS.SecurityAgent"
8+
},
9+
"python": {
10+
"module": "aws_cdk.aws_securityagent"
11+
}
12+
}
13+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# AWS::SecurityAgent 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 securityagent from 'aws-cdk-lib/aws-securityagent';
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 SecurityAgent construct libraries](https://constructs.dev/search?q=securityagent)
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::SecurityAgent resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SecurityAgent.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::SecurityAgent](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SecurityAgent.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::SecurityAgent Cloudformation Resources
2+
export * from './securityagent.generated';

0 commit comments

Comments
 (0)