cdk-lambda-subminute 2.0.419 → 2.0.420
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +706 -496
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/deadline-2023-10-12.examples.json +5 -0
- package/node_modules/aws-sdk/apis/deadline-2023-10-12.min.json +6906 -0
- package/node_modules/aws-sdk/apis/deadline-2023-10-12.paginators.json +160 -0
- package/node_modules/aws-sdk/apis/deadline-2023-10-12.waiters2.json +131 -0
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +113 -99
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +13 -12
- 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/cloudwatch.d.ts +19 -15
- package/node_modules/aws-sdk/clients/datazone.d.ts +305 -75
- package/node_modules/aws-sdk/clients/deadline.d.ts +6639 -0
- package/node_modules/aws-sdk/clients/deadline.js +19 -0
- package/node_modules/aws-sdk/clients/emr.d.ts +2 -2
- package/node_modules/aws-sdk/clients/lightsail.d.ts +33 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +3 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +53 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +20 -15
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +19 -19
- 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/event_listeners.js +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -379,6 +379,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
379
379
|
chatbot?: AWS.Chatbot.Types.ClientConfiguration;
|
380
380
|
timestreaminfluxdb?: AWS.TimestreamInfluxDB.Types.ClientConfiguration;
|
381
381
|
codeconnections?: AWS.CodeConnections.Types.ClientConfiguration;
|
382
|
+
deadline?: AWS.Deadline.Types.ClientConfiguration;
|
382
383
|
}
|
383
384
|
export interface ConfigurationServiceApiVersions {
|
384
385
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -760,4 +761,5 @@ export interface ConfigurationServiceApiVersions {
|
|
760
761
|
chatbot?: AWS.Chatbot.Types.apiVersion;
|
761
762
|
timestreaminfluxdb?: AWS.TimestreamInfluxDB.Types.apiVersion;
|
762
763
|
codeconnections?: AWS.CodeConnections.Types.apiVersion;
|
764
|
+
deadline?: AWS.Deadline.Types.apiVersion;
|
763
765
|
}
|
@@ -554,6 +554,7 @@ AWS.EventListeners = {
|
|
554
554
|
this.httpRequest.endpoint =
|
555
555
|
new AWS.Endpoint(resp.httpResponse.headers['location']);
|
556
556
|
this.httpRequest.headers['Host'] = this.httpRequest.endpoint.host;
|
557
|
+
this.httpRequest.path = this.httpRequest.endpoint.path;
|
557
558
|
resp.error.redirect = true;
|
558
559
|
resp.error.retryable = true;
|
559
560
|
}
|
package/package.json
CHANGED
@@ -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.1590.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.420",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|