cdk-lambda-subminute 2.0.325 → 2.0.326
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 +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +0 -709
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +84 -20
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +269 -201
- package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +85 -65
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +479 -317
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.examples.json +5 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.min.json +1286 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +548 -466
- 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/appstream.d.ts +1 -1
- package/node_modules/aws-sdk/clients/b2bi.d.ts +45 -45
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +98 -3
- package/node_modules/aws-sdk/clients/connect.d.ts +94 -38
- package/node_modules/aws-sdk/clients/controltower.d.ts +3 -3
- package/node_modules/aws-sdk/clients/firehose.d.ts +24 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +14 -10
- package/node_modules/aws-sdk/clients/iot.d.ts +173 -1
- package/node_modules/aws-sdk/clients/neptunegraph.d.ts +1394 -0
- package/node_modules/aws-sdk/clients/neptunegraph.js +19 -0
- package/node_modules/aws-sdk/clients/opensearch.d.ts +23 -23
- package/node_modules/aws-sdk/clients/quicksight.d.ts +75 -3
- package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
- 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 +68 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +844 -587
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/dist-tools/service-collector.js +1 -1
- 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/neptunegraph.js +14 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -13,7 +13,7 @@ var sanitizeRegex = /[^a-zA-Z0-9,-]/;
|
|
13
13
|
|
14
14
|
var serviceClasses = {};
|
15
15
|
Object.keys(AWS).forEach(function(name) {
|
16
|
-
if (AWS[name].serviceIdentifier) {
|
16
|
+
if (AWS[name].serviceIdentifier && name !== 'NeptuneGraph') {
|
17
17
|
serviceClasses[AWS[name].serviceIdentifier] = AWS[name];
|
18
18
|
}
|
19
19
|
});
|
@@ -375,6 +375,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
375
375
|
cleanroomsml?: AWS.CleanRoomsML.Types.ClientConfiguration;
|
376
376
|
marketplaceagreement?: AWS.MarketplaceAgreement.Types.ClientConfiguration;
|
377
377
|
marketplacedeployment?: AWS.MarketplaceDeployment.Types.ClientConfiguration;
|
378
|
+
neptunegraph?: AWS.NeptuneGraph.Types.ClientConfiguration;
|
378
379
|
}
|
379
380
|
export interface ConfigurationServiceApiVersions {
|
380
381
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -752,4 +753,5 @@ export interface ConfigurationServiceApiVersions {
|
|
752
753
|
cleanroomsml?: AWS.CleanRoomsML.Types.apiVersion;
|
753
754
|
marketplaceagreement?: AWS.MarketplaceAgreement.Types.apiVersion;
|
754
755
|
marketplacedeployment?: AWS.MarketplaceDeployment.Types.apiVersion;
|
756
|
+
neptunegraph?: AWS.NeptuneGraph.Types.apiVersion;
|
755
757
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
var AWS = require('../core');
|
2
|
+
|
3
|
+
if (AWS.NeptuneGraph) {
|
4
|
+
AWS.util.update(AWS.NeptuneGraph.prototype, {
|
5
|
+
/**
|
6
|
+
* @api private
|
7
|
+
*/
|
8
|
+
validateService: function validateService() {
|
9
|
+
var msg = 'AWS Neptune Graph is not available in the AWS SDK for JavaScript v2, consider using the AWS SDK for JavaScript v3: https://www.npmjs.com/package/@aws-sdk/client-neptune-graph';
|
10
|
+
throw AWS.util.error(new Error(),
|
11
|
+
{name: 'ServiceExcludedFromV2', message: msg});
|
12
|
+
},
|
13
|
+
});
|
14
|
+
};
|
package/package.json
CHANGED
@@ -47,7 +47,7 @@
|
|
47
47
|
"esbuild": "^0.19.9",
|
48
48
|
"eslint": "^8",
|
49
49
|
"eslint-import-resolver-typescript": "^2.7.1",
|
50
|
-
"eslint-plugin-import": "^2.29.
|
50
|
+
"eslint-plugin-import": "^2.29.1",
|
51
51
|
"jest": "^27",
|
52
52
|
"jest-junit": "^15",
|
53
53
|
"jsii": "1.x",
|
@@ -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.1519.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.326",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|