cdk-lambda-subminute 2.0.135 → 2.0.137
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 +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +104 -93
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +259 -50
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +936 -921
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +52 -0
- package/node_modules/aws-sdk/apis/grafana-2020-08-18.min.json +1 -0
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +100 -69
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +289 -274
- package/node_modules/aws-sdk/apis/iotdeviceadvisor-2020-09-18.min.json +13 -4
- package/node_modules/aws-sdk/apis/kafka-2018-11-14.min.json +570 -89
- package/node_modules/aws-sdk/apis/kafka-2018-11-14.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.paginators.json +4 -2
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +112 -48
- package/node_modules/aws-sdk/apis/simspaceweaver-2022-10-28.min.json +52 -16
- package/node_modules/aws-sdk/clients/appflow.d.ts +14 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +228 -10
- package/node_modules/aws-sdk/clients/directconnect.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +75 -52
- package/node_modules/aws-sdk/clients/efs.d.ts +1 -1
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +61 -0
- package/node_modules/aws-sdk/clients/grafana.d.ts +4 -0
- package/node_modules/aws-sdk/clients/guardduty.d.ts +32 -2
- package/node_modules/aws-sdk/clients/iot.d.ts +21 -2
- package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +16 -3
- package/node_modules/aws-sdk/clients/kafka.d.ts +634 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/osis.d.ts +26 -26
- package/node_modules/aws-sdk/clients/qldb.d.ts +27 -27
- package/node_modules/aws-sdk/clients/rekognition.d.ts +117 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2 -2
- package/node_modules/aws-sdk/clients/simspaceweaver.d.ts +62 -21
- package/node_modules/aws-sdk/clients/wafv2.d.ts +57 -57
- package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
- 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 +18 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +1611 -1300
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +98 -98
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/sqs.js +3 -2
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
|
@@ -5,7 +5,7 @@ AWS.util.update(AWS.SQS.prototype, {
|
|
|
5
5
|
* @api private
|
|
6
6
|
*/
|
|
7
7
|
setupRequestListeners: function setupRequestListeners(request) {
|
|
8
|
-
request.addListener('build', this.buildEndpoint);
|
|
8
|
+
request.addListener('build', this.buildEndpoint.bind(this));
|
|
9
9
|
|
|
10
10
|
if (request.service.config.computeChecksums) {
|
|
11
11
|
if (request.operation === 'sendMessage') {
|
|
@@ -118,7 +118,8 @@ AWS.util.update(AWS.SQS.prototype, {
|
|
|
118
118
|
* @api private
|
|
119
119
|
*/
|
|
120
120
|
buildEndpoint: function buildEndpoint(request) {
|
|
121
|
-
var
|
|
121
|
+
var params = request.httpRequest.params || this.config.params;
|
|
122
|
+
var url = params.QueueUrl;
|
|
122
123
|
if (url) {
|
|
123
124
|
request.httpRequest.endpoint = new AWS.Endpoint(url);
|
|
124
125
|
|
package/package.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
|
58
58
|
"jsii-pacmak": "^1.80.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.71.
|
|
60
|
+
"projen": "^0.71.32",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
62
|
"standard-version": "^9",
|
|
63
63
|
"ts-jest": "^27",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"aws-cdk-lib": "^2.77.0",
|
|
72
|
-
"aws-sdk": "^2.
|
|
72
|
+
"aws-sdk": "^2.1368.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.137",
|
|
95
95
|
"jest": {
|
|
96
96
|
"testMatch": [
|
|
97
97
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|