cdk-lambda-subminute 2.0.420 → 2.0.422
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.min.json +7 -24
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +43 -42
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +611 -324
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +22 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +71 -34
- package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +12 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +287 -232
- package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.min.json +50 -8
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +90 -79
- package/node_modules/aws-sdk/clients/cleanroomsml.d.ts +13 -30
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
- package/node_modules/aws-sdk/clients/datazone.d.ts +303 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +21 -0
- package/node_modules/aws-sdk/clients/ecs.d.ts +2 -2
- package/node_modules/aws-sdk/clients/glue.d.ts +58 -0
- package/node_modules/aws-sdk/clients/groundstation.d.ts +20 -4
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/medialive.d.ts +59 -0
- package/node_modules/aws-sdk/clients/medicalimaging.d.ts +53 -5
- package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +3 -3
- package/node_modules/aws-sdk/clients/securityhub.d.ts +97 -97
- package/node_modules/aws-sdk/clients/transfer.d.ts +42 -14
- 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 +14 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +46 -45
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +54 -54
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/cloudsearchdomain.js +3 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -99,6 +99,9 @@ AWS.util.update(AWS.CloudSearchDomain.prototype, {
|
|
99
99
|
*/
|
100
100
|
convertGetToPost: function(request) {
|
101
101
|
var httpRequest = request.httpRequest;
|
102
|
+
if (httpRequest.method === 'POST') {
|
103
|
+
return;
|
104
|
+
}
|
102
105
|
// convert queries to POST to avoid length restrictions
|
103
106
|
var path = httpRequest.path.split('?');
|
104
107
|
httpRequest.method = 'POST';
|
package/package.json
CHANGED
@@ -55,7 +55,7 @@
|
|
55
55
|
"jsii-docgen": "^1.8.110",
|
56
56
|
"jsii-pacmak": "^1.96.0",
|
57
57
|
"jsii-rosetta": "1.x",
|
58
|
-
"projen": "^0.80.
|
58
|
+
"projen": "^0.80.17",
|
59
59
|
"source-map-support": "^0.5.21",
|
60
60
|
"standard-version": "^9",
|
61
61
|
"ts-jest": "^27",
|
@@ -67,7 +67,7 @@
|
|
67
67
|
},
|
68
68
|
"dependencies": {
|
69
69
|
"aws-cdk-lib": "^2.95.0",
|
70
|
-
"aws-sdk": "^2.
|
70
|
+
"aws-sdk": "^2.1592.0",
|
71
71
|
"constructs": "^10.0.5"
|
72
72
|
},
|
73
73
|
"bundledDependencies": [
|
@@ -89,7 +89,7 @@
|
|
89
89
|
],
|
90
90
|
"main": "lib/index.js",
|
91
91
|
"license": "Apache-2.0",
|
92
|
-
"version": "2.0.
|
92
|
+
"version": "2.0.422",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|