cdk-comprehend-s3olap 2.0.137 → 2.0.138
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- 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/guardduty-2017-11-28.min.json +100 -69
- 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/clients/ec2.d.ts +75 -52
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +61 -0
- package/node_modules/aws-sdk/clients/guardduty.d.ts +32 -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/sagemaker.d.ts +2 -2
- 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 +11 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +946 -928
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- 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.28",
|
61
61
|
"standard-version": "^9",
|
62
62
|
"ts-jest": "^27",
|
63
63
|
"typescript": "^4.9.5"
|
@@ -68,7 +68,7 @@
|
|
68
68
|
},
|
69
69
|
"dependencies": {
|
70
70
|
"aws-cdk-lib": "^2.77.0",
|
71
|
-
"aws-sdk": "^2.
|
71
|
+
"aws-sdk": "^2.1367.0",
|
72
72
|
"constructs": "^10.0.5",
|
73
73
|
"esbuild": "^0.17.18"
|
74
74
|
},
|
@@ -95,7 +95,7 @@
|
|
95
95
|
],
|
96
96
|
"main": "lib/index.js",
|
97
97
|
"license": "Apache-2.0",
|
98
|
-
"version": "2.0.
|
98
|
+
"version": "2.0.138",
|
99
99
|
"jest": {
|
100
100
|
"testMatch": [
|
101
101
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|