cdk-lambda-subminute 2.0.217 → 2.0.219
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +20 -4
- package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +294 -24
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +35 -25
- package/node_modules/aws-sdk/apis/grafana-2020-08-18.min.json +41 -4
- package/node_modules/aws-sdk/apis/grafana-2020-08-18.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.examples.json +5 -0
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.min.json +1098 -0
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/ram-2018-01-04.min.json +49 -36
- package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.min.json +201 -62
- package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +32 -32
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +205 -158
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/securitylake-2018-05-10.min.json +139 -34
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.min.json +98 -24
- package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +30 -6
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +134 -123
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +21 -0
- package/node_modules/aws-sdk/clients/codecatalyst.d.ts +264 -7
- package/node_modules/aws-sdk/clients/connectcases.d.ts +15 -4
- package/node_modules/aws-sdk/clients/ec2.d.ts +200 -200
- package/node_modules/aws-sdk/clients/grafana.d.ts +47 -5
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +11 -11
- package/node_modules/aws-sdk/clients/medicalimaging.d.ts +1102 -0
- package/node_modules/aws-sdk/clients/medicalimaging.js +19 -0
- package/node_modules/aws-sdk/clients/ram.d.ts +14 -1
- package/node_modules/aws-sdk/clients/route53resolver.d.ts +220 -7
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +88 -10
- package/node_modules/aws-sdk/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
- package/node_modules/aws-sdk/clients/savingsplans.d.ts +1 -1
- package/node_modules/aws-sdk/clients/securitylake.d.ts +93 -11
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +131 -7
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +21 -0
- package/node_modules/aws-sdk/clients/wafv2.d.ts +12 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +62 -18
- package/node_modules/aws-sdk/dist/aws-sdk.js +27 -7
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +97 -97
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -351,6 +351,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
351
351
|
codegurusecurity?: AWS.CodeGuruSecurity.Types.ClientConfiguration;
|
|
352
352
|
verifiedpermissions?: AWS.VerifiedPermissions.Types.ClientConfiguration;
|
|
353
353
|
appfabric?: AWS.AppFabric.Types.ClientConfiguration;
|
|
354
|
+
medicalimaging?: AWS.MedicalImaging.Types.ClientConfiguration;
|
|
354
355
|
}
|
|
355
356
|
export interface ConfigurationServiceApiVersions {
|
|
356
357
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -704,4 +705,5 @@ export interface ConfigurationServiceApiVersions {
|
|
|
704
705
|
codegurusecurity?: AWS.CodeGuruSecurity.Types.apiVersion;
|
|
705
706
|
verifiedpermissions?: AWS.VerifiedPermissions.Types.apiVersion;
|
|
706
707
|
appfabric?: AWS.AppFabric.Types.apiVersion;
|
|
708
|
+
medicalimaging?: AWS.MedicalImaging.Types.apiVersion;
|
|
707
709
|
}
|
package/package.json
CHANGED
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@types/node": "^16",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
45
45
|
"@typescript-eslint/parser": "^5",
|
|
46
|
-
"aws-cdk-lib": "^2.
|
|
46
|
+
"aws-cdk-lib": "^2.88.0",
|
|
47
47
|
"constructs": "^10.0.5",
|
|
48
|
-
"esbuild": "^0.18.
|
|
48
|
+
"esbuild": "^0.18.15",
|
|
49
49
|
"eslint": "^8",
|
|
50
50
|
"eslint-import-resolver-node": "^0.3.7",
|
|
51
51
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"jsii-pacmak": "^1.85.0",
|
|
59
59
|
"jsii-rosetta": "1.x",
|
|
60
60
|
"npm-check-updates": "^16",
|
|
61
|
-
"projen": "^0.71.
|
|
61
|
+
"projen": "^0.71.145",
|
|
62
62
|
"source-map-support": "^0.5.21",
|
|
63
63
|
"standard-version": "^9",
|
|
64
64
|
"ts-jest": "^27",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"constructs": "^10.0.5"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"aws-cdk-lib": "^2.
|
|
73
|
-
"aws-sdk": "^2.
|
|
72
|
+
"aws-cdk-lib": "^2.88.0",
|
|
73
|
+
"aws-sdk": "^2.1419.0",
|
|
74
74
|
"constructs": "^10.0.5"
|
|
75
75
|
},
|
|
76
76
|
"bundledDependencies": [
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
],
|
|
93
93
|
"main": "lib/index.js",
|
|
94
94
|
"license": "Apache-2.0",
|
|
95
|
-
"version": "2.0.
|
|
95
|
+
"version": "2.0.219",
|
|
96
96
|
"jest": {
|
|
97
97
|
"testMatch": [
|
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|