cdk-docker-image-deployment 0.0.234 → 0.0.236
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- 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 +4 -4
|
@@ -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
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"jest-junit": "^15",
|
|
54
54
|
"jsii": "1.x",
|
|
55
55
|
"jsii-diff": "^1.80.0",
|
|
56
|
-
"jsii-docgen": "^7.2.
|
|
56
|
+
"jsii-docgen": "^7.2.9",
|
|
57
57
|
"jsii-pacmak": "^1.80.0",
|
|
58
58
|
"npm-check-updates": "^16",
|
|
59
|
-
"projen": "^0.71.
|
|
59
|
+
"projen": "^0.71.31",
|
|
60
60
|
"standard-version": "^9",
|
|
61
61
|
"ts-jest": "^27",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.114",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1368.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
85
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
86
|
-
"version": "0.0.
|
|
86
|
+
"version": "0.0.236",
|
|
87
87
|
"jest": {
|
|
88
88
|
"testMatch": [
|
|
89
89
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|