cdk-lambda-subminute 2.0.324 → 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.
Files changed (41) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +0 -709
  5. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +84 -20
  6. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +269 -201
  7. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +56 -54
  8. package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +85 -65
  9. package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +4 -1
  10. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +479 -317
  11. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  12. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.min.json +1286 -0
  14. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.paginators.json +28 -0
  15. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +548 -466
  16. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  17. package/node_modules/aws-sdk/clients/all.js +2 -1
  18. package/node_modules/aws-sdk/clients/appstream.d.ts +1 -1
  19. package/node_modules/aws-sdk/clients/b2bi.d.ts +45 -45
  20. package/node_modules/aws-sdk/clients/billingconductor.d.ts +98 -3
  21. package/node_modules/aws-sdk/clients/connect.d.ts +94 -38
  22. package/node_modules/aws-sdk/clients/controltower.d.ts +3 -3
  23. package/node_modules/aws-sdk/clients/drs.d.ts +9 -0
  24. package/node_modules/aws-sdk/clients/firehose.d.ts +24 -0
  25. package/node_modules/aws-sdk/clients/gamelift.d.ts +14 -10
  26. package/node_modules/aws-sdk/clients/iot.d.ts +173 -1
  27. package/node_modules/aws-sdk/clients/neptunegraph.d.ts +1394 -0
  28. package/node_modules/aws-sdk/clients/neptunegraph.js +19 -0
  29. package/node_modules/aws-sdk/clients/opensearch.d.ts +23 -23
  30. package/node_modules/aws-sdk/clients/quicksight.d.ts +75 -3
  31. package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
  32. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  33. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +69 -11
  34. package/node_modules/aws-sdk/dist/aws-sdk.js +844 -587
  35. package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
  36. package/node_modules/aws-sdk/dist-tools/service-collector.js +1 -1
  37. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  38. package/node_modules/aws-sdk/lib/core.js +1 -1
  39. package/node_modules/aws-sdk/lib/services/neptunegraph.js +14 -0
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. 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
  }
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1517.0',
23
+ VERSION: '2.1519.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -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
+ };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1517.0",
4
+ "version": "2.1519.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
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.0",
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.1517.0",
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.324",
92
+ "version": "2.0.326",
93
93
  "jest": {
94
94
  "testMatch": [
95
95
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",