cdk-lambda-subminute 2.0.188 → 2.0.190
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 +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +67 -80
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +48 -30
- package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +56 -3
- package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +529 -150
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +72 -14
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +103 -93
- package/node_modules/aws-sdk/apis/mq-2017-11-27.min.json +132 -32
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +995 -973
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +367 -89
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +44 -31
- package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +38 -17
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +47 -28
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +2 -2
- package/node_modules/aws-sdk/clients/emr.d.ts +77 -1
- package/node_modules/aws-sdk/clients/inspector2.d.ts +417 -9
- package/node_modules/aws-sdk/clients/kendra.d.ts +104 -23
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +11 -2
- package/node_modules/aws-sdk/clients/mq.d.ts +136 -30
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +45 -13
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +356 -25
- package/node_modules/aws-sdk/clients/transfer.d.ts +13 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +63 -6
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +55 -55
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
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.85.0",
|
|
47
47
|
"constructs": "^10.0.5",
|
|
48
48
|
"esbuild": "^0.18.6",
|
|
49
49
|
"eslint": "^8",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
|
58
58
|
"jsii-pacmak": "^1.84.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.71.
|
|
60
|
+
"projen": "^0.71.106",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
62
|
"standard-version": "^9",
|
|
63
63
|
"ts-jest": "^27",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"constructs": "^10.0.5"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"aws-cdk-lib": "^2.
|
|
72
|
-
"aws-sdk": "^2.
|
|
71
|
+
"aws-cdk-lib": "^2.85.0",
|
|
72
|
+
"aws-sdk": "^2.1403.0",
|
|
73
73
|
"constructs": "^10.0.5"
|
|
74
74
|
},
|
|
75
75
|
"bundledDependencies": [
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
],
|
|
92
92
|
"main": "lib/index.js",
|
|
93
93
|
"license": "Apache-2.0",
|
|
94
|
-
"version": "2.0.
|
|
94
|
+
"version": "2.0.190",
|
|
95
95
|
"jest": {
|
|
96
96
|
"testMatch": [
|
|
97
97
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|