cdk-comprehend-s3olap 2.0.136 → 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/.gitattributes +1 -0
- 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 +15 -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/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.examples.json +5 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.min.json +555 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.paginators.json +9 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- 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 +574 -0
- package/node_modules/aws-sdk/clients/osis.js +18 -0
- 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 +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -13
- package/node_modules/aws-sdk/dist/aws-sdk.js +949 -928
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- 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 +5 -5
@@ -344,6 +344,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
344
344
|
internetmonitor?: AWS.InternetMonitor.Types.ClientConfiguration;
|
345
345
|
ivsrealtime?: AWS.IVSRealTime.Types.ClientConfiguration;
|
346
346
|
vpclattice?: AWS.VPCLattice.Types.ClientConfiguration;
|
347
|
+
osis?: AWS.OSIS.Types.ClientConfiguration;
|
347
348
|
}
|
348
349
|
export interface ConfigurationServiceApiVersions {
|
349
350
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -690,4 +691,5 @@ export interface ConfigurationServiceApiVersions {
|
|
690
691
|
internetmonitor?: AWS.InternetMonitor.Types.apiVersion;
|
691
692
|
ivsrealtime?: AWS.IVSRealTime.Types.apiVersion;
|
692
693
|
vpclattice?: AWS.VPCLattice.Types.apiVersion;
|
694
|
+
osis?: AWS.OSIS.Types.apiVersion;
|
693
695
|
}
|
@@ -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
@@ -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.77.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
48
|
"esbuild": "^0.17.18",
|
49
49
|
"eslint": "^8",
|
@@ -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"
|
@@ -67,8 +67,8 @@
|
|
67
67
|
"constructs": "^10.0.5"
|
68
68
|
},
|
69
69
|
"dependencies": {
|
70
|
-
"aws-cdk-lib": "^2.
|
71
|
-
"aws-sdk": "^2.
|
70
|
+
"aws-cdk-lib": "^2.77.0",
|
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)",
|