Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/aws-cdk-lib/aws-smsvoice/.jsiirc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"targets": {
"java": {
"package": "software.amazon.awscdk.services.smsvoice"
},
"dotnet": {
"package": "Amazon.CDK.AWS.SMSVOICE"
},
"python": {
"module": "aws_cdk.aws_smsvoice"
}
}
}
39 changes: 39 additions & 0 deletions packages/aws-cdk-lib/aws-smsvoice/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# AWS::SMSVOICE Construct Library
<!--BEGIN STABILITY BANNER-->

---

![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

---

<!--END STABILITY BANNER-->

This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.

```ts nofixture
import * as smsvoice from 'aws-cdk-lib/aws-smsvoice';
```

<!--BEGIN CFNONLY DISCLAIMER-->

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 SMSVOICE construct libraries](https://constructs.dev/search?q=smsvoice)
- 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::SMSVOICE resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SMSVOICE.html) directly.


<!--BEGIN CFNONLY DISCLAIMER-->

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::SMSVOICE](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SMSVOICE.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.)

<!--END CFNONLY DISCLAIMER-->
1 change: 1 addition & 0 deletions packages/aws-cdk-lib/aws-smsvoice/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib';
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-smsvoice/lib/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// AWS::SMSVOICE Cloudformation Resources
export * from './smsvoice.generated';
1 change: 1 addition & 0 deletions packages/aws-cdk-lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ export * as aws_ses_actions from './aws-ses-actions';
export * as aws_shield from './aws-shield';
export * as aws_signer from './aws-signer';
export * as aws_simspaceweaver from './aws-simspaceweaver';
export * as aws_smsvoice from './aws-smsvoice';
export * as aws_sns from './aws-sns';
export * as aws_sns_subscriptions from './aws-sns-subscriptions';
export * as aws_sqs from './aws-sqs';
Expand Down
3 changes: 2 additions & 1 deletion packages/aws-cdk-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
},
"devDependencies": {
"@aws-cdk/lambda-layer-kubectl-v31": "^2.1.0",
"@aws-cdk/aws-service-spec": "^0.1.95",
"@aws-cdk/aws-service-spec": "^0.1.98",
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/custom-resource-handlers": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
Expand Down Expand Up @@ -479,6 +479,7 @@
"./aws-shield": "./aws-shield/index.js",
"./aws-signer": "./aws-signer/index.js",
"./aws-simspaceweaver": "./aws-simspaceweaver/index.js",
"./aws-smsvoice": "./aws-smsvoice/index.js",
"./aws-sns": "./aws-sns/index.js",
"./aws-sns-subscriptions": "./aws-sns-subscriptions/index.js",
"./aws-sqs": "./aws-sqs/index.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/aws-cdk-lib/scripts/scope-map.json
Original file line number Diff line number Diff line change
Expand Up @@ -1194,6 +1194,11 @@
"namespace": "AWS::SimSpaceWeaver"
}
],
"aws-smsvoice": [
{
"namespace": "AWS::SMSVOICE"
}
],
"aws-sns": [
{
"namespace": "AWS::SNS"
Expand Down
6 changes: 3 additions & 3 deletions tools/@aws-cdk/spec2cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
},
"license": "Apache-2.0",
"dependencies": {
"@aws-cdk/aws-service-spec": "^0.1.95",
"@aws-cdk/service-spec-importers": "^0.0.84",
"@aws-cdk/service-spec-types": "^0.0.161",
"@aws-cdk/aws-service-spec": "^0.1.98",
"@aws-cdk/service-spec-importers": "^0.0.86",
"@aws-cdk/service-spec-types": "^0.0.164",
"@cdklabs/tskb": "^0.0.3",
"@cdklabs/typewriter": "^0.0.5",
"camelcase": "^6",
Expand Down
36 changes: 18 additions & 18 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@
"@aws-cdk/service-spec-types" "^0.0.158"
"@cdklabs/tskb" "^0.0.3"

"@aws-cdk/aws-service-spec@^0.1.95":
version "0.1.95"
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.95.tgz#f41c70c99906975cf2f9eb9de0c09780a896d917"
integrity sha512-3Iaz/XBg2Bg8uycpcosSEUHUUdaxdgKHOUxylLiX9DpD6GCE5Ken+xfmvB73lFT5oba3Zo9E3xbTlThCy61WWg==
"@aws-cdk/aws-service-spec@^0.1.98":
version "0.1.98"
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.98.tgz#cc8224815c5bab18167bd2f11eb85ea559b2a91d"
integrity sha512-oif2Gxp6Tb9FoT4iw1M/DPULshqK/DL7Bbo/3ss7uTHm5DDsI48tXU4ooEiiFNwLkMAp1Bp+76iG0wkgNqWwmw==
dependencies:
"@aws-cdk/service-spec-types" "^0.0.161"
"@aws-cdk/service-spec-types" "^0.0.164"
"@cdklabs/tskb" "^0.0.3"

"@aws-cdk/cloud-assembly-schema@^48.6.0":
Expand Down Expand Up @@ -122,12 +122,12 @@
resolved "https://registry.npmjs.org/@aws-cdk/lambda-layer-kubectl-v33/-/lambda-layer-kubectl-v33-2.0.0.tgz#0c521ad987bb3ac597a4b4ebeece8fd2721ca000"
integrity sha512-osA3wkwWK2OfpymTcCZKhgaKSca9PQSr+7xi+UevKFRHtMdxHgygC345hdDpCtZlMmX9pKjtFpRUxeRrbGHMEw==

"@aws-cdk/service-spec-importers@^0.0.84":
version "0.0.84"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.84.tgz#f261345c5bccfac0c2ff3d854c5247d677b6091a"
integrity sha512-iVuiU2nCnlDnJETWscboiTqdu/PWQrTQuNA3M0TA4YdidJd5tlG2El/m9eF3OHe+8RLSixZsG7xKbtMzwjqaOg==
"@aws-cdk/service-spec-importers@^0.0.86":
version "0.0.86"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.86.tgz#229ee83b894d4f463edd8896ce0c187821aeaa6a"
integrity sha512-3p0MO62FAVF2U+S2VjKRGFQRjZtzk9Z5EWOnYRxtt4NlhxEDeYgPXBDTwPAuWVkQM2XVaDUcLv5G/kXgEKCUVQ==
dependencies:
"@aws-cdk/service-spec-types" "^0.0.160"
"@aws-cdk/service-spec-types" "^0.0.163"
"@cdklabs/tskb" "^0.0.3"
ajv "^6"
canonicalize "^2.1.0"
Expand All @@ -145,17 +145,17 @@
dependencies:
"@cdklabs/tskb" "^0.0.3"

"@aws-cdk/service-spec-types@^0.0.160":
version "0.0.160"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.160.tgz#3c37e324418db15a4820f957b95d282244b1743c"
integrity sha512-uTSZyc6yBbX7SYSvnPi0EkvGGqUbo2Xc2O2urtNTviv2v9vRROMJNxvWc8QIobDYe+KEP3QcgbZTHKxI0apuKQ==
"@aws-cdk/service-spec-types@^0.0.163":
version "0.0.163"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.163.tgz#ba07b771c479211900675e149d0c1a465dee1099"
integrity sha512-IheocTkQUn9bxe7SsEYk1G0Tb7vlNELNSan3VxHjvgKijUWden14xQJivovooV2sfjFRiAnOPjnUbGTttrHSrw==
dependencies:
"@cdklabs/tskb" "^0.0.3"

"@aws-cdk/service-spec-types@^0.0.161":
version "0.0.161"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.161.tgz#bf0f42b44156a5c0d58ab27c8050a4baa1956dfb"
integrity sha512-GT1QaeEP3AKnwEerB3wGQ15OM5QPX8xVkjF/wq71RkX4rnqeMX4h4OSZFZUV/8gW2j2c74LHwPIJ15xSTBt54w==
"@aws-cdk/service-spec-types@^0.0.164":
version "0.0.164"
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.164.tgz#9c19b41234a1dd7fa5b0000c0ea61480058cdc15"
integrity sha512-Uy28KdwlotnGAH89PsIMH5bUEF8jb2W4FTaHrO8yRu70PgrnqH6j/xVWlyrp1JRd05CorZUhV9SWTdbCdzMU6Q==
dependencies:
"@cdklabs/tskb" "^0.0.3"

Expand Down
Loading