cdk-lambda-subminute 2.0.415 → 2.0.417
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/codecatalyst-2022-09-28.min.json +5 -1
- package/node_modules/aws-sdk/apis/codeconnections-2023-12-01.examples.json +5 -0
- package/node_modules/aws-sdk/apis/codeconnections-2023-12-01.min.json +923 -0
- package/node_modules/aws-sdk/apis/codeconnections-2023-12-01.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +18 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +40 -22
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +196 -51
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +15 -5
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +83 -61
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1048 -1019
- 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/b2bi.d.ts +2 -2
- package/node_modules/aws-sdk/clients/codebuild.d.ts +1 -1
- package/node_modules/aws-sdk/clients/codecatalyst.d.ts +9 -1
- package/node_modules/aws-sdk/clients/codeconnections.d.ts +1200 -0
- package/node_modules/aws-sdk/clients/codeconnections.js +18 -0
- package/node_modules/aws-sdk/clients/computeoptimizer.d.ts +9 -9
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/eks.d.ts +1 -1
- package/node_modules/aws-sdk/clients/guardduty.d.ts +34 -10
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +22 -0
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +191 -2
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +17 -1
- package/node_modules/aws-sdk/clients/oam.d.ts +1 -1
- package/node_modules/aws-sdk/clients/quicksight.d.ts +25 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +24 -0
- 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 +48 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +21 -8
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +40 -40
- 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/package.json +1 -1
- package/package.json +3 -3
@@ -378,6 +378,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
378
378
|
artifact?: AWS.Artifact.Types.ClientConfiguration;
|
379
379
|
chatbot?: AWS.Chatbot.Types.ClientConfiguration;
|
380
380
|
timestreaminfluxdb?: AWS.TimestreamInfluxDB.Types.ClientConfiguration;
|
381
|
+
codeconnections?: AWS.CodeConnections.Types.ClientConfiguration;
|
381
382
|
}
|
382
383
|
export interface ConfigurationServiceApiVersions {
|
383
384
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -758,4 +759,5 @@ export interface ConfigurationServiceApiVersions {
|
|
758
759
|
artifact?: AWS.Artifact.Types.apiVersion;
|
759
760
|
chatbot?: AWS.Chatbot.Types.apiVersion;
|
760
761
|
timestreaminfluxdb?: AWS.TimestreamInfluxDB.Types.apiVersion;
|
762
|
+
codeconnections?: AWS.CodeConnections.Types.apiVersion;
|
761
763
|
}
|
package/package.json
CHANGED
@@ -55,7 +55,7 @@
|
|
55
55
|
"jsii-docgen": "^1.8.110",
|
56
56
|
"jsii-pacmak": "^1.96.0",
|
57
57
|
"jsii-rosetta": "1.x",
|
58
|
-
"projen": "^0.80.
|
58
|
+
"projen": "^0.80.15",
|
59
59
|
"source-map-support": "^0.5.21",
|
60
60
|
"standard-version": "^9",
|
61
61
|
"ts-jest": "^27",
|
@@ -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.1589.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.417",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|