aws-sdk 2.1536.0 → 2.1538.0

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 (39) hide show
  1. package/README.md +1 -1
  2. package/apis/iotfleetwise-2021-06-17.min.json +15 -11
  3. package/apis/keyspaces-2022-02-10.min.json +159 -16
  4. package/apis/metadata.json +0 -8
  5. package/apis/payment-cryptography-2021-09-14.min.json +45 -11
  6. package/apis/rekognition-2016-06-27.min.json +114 -93
  7. package/clients/all.d.ts +0 -2
  8. package/clients/all.js +0 -2
  9. package/clients/dynamodb.d.ts +1 -1
  10. package/clients/iot.d.ts +1 -1
  11. package/clients/iotfleetwise.d.ts +10 -1
  12. package/clients/keyspaces.d.ts +165 -4
  13. package/clients/macie2.d.ts +13 -13
  14. package/clients/paymentcryptography.d.ts +55 -12
  15. package/clients/personalize.d.ts +6 -6
  16. package/clients/rekognition.d.ts +32 -3
  17. package/clients/securityhub.d.ts +1 -1
  18. package/dist/aws-sdk-core-react-native.js +7 -4
  19. package/dist/aws-sdk-react-native.js +122 -218
  20. package/dist/aws-sdk.js +117 -104
  21. package/dist/aws-sdk.min.js +38 -38
  22. package/dist-tools/service-collector.js +1 -1
  23. package/lib/config_service_placeholders.d.ts +0 -4
  24. package/lib/core.js +1 -1
  25. package/lib/dynamodb/document_client.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/scripts/console +3 -3
  28. package/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +0 -5
  29. package/apis/cloudfront-keyvaluestore-2022-07-26.min.json +0 -359
  30. package/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +0 -10
  31. package/apis/neptune-graph-2023-11-29.examples.json +0 -5
  32. package/apis/neptune-graph-2023-11-29.min.json +0 -1286
  33. package/apis/neptune-graph-2023-11-29.paginators.json +0 -28
  34. package/apis/neptune-graph-2023-11-29.waiters2.json +0 -168
  35. package/clients/cloudfrontkeyvaluestore.d.ts +0 -294
  36. package/clients/cloudfrontkeyvaluestore.js +0 -18
  37. package/clients/neptunegraph.d.ts +0 -1459
  38. package/clients/neptunegraph.js +0 -20
  39. package/lib/services/neptunegraph.js +0 -14
@@ -1,20 +0,0 @@
1
- require('../lib/node_loader');
2
- var AWS = require('../lib/core');
3
- var Service = AWS.Service;
4
- var apiLoader = AWS.apiLoader;
5
-
6
- apiLoader.services['neptunegraph'] = {};
7
- AWS.NeptuneGraph = Service.defineService('neptunegraph', ['2023-11-29']);
8
- require('../lib/services/neptunegraph');
9
- Object.defineProperty(apiLoader.services['neptunegraph'], '2023-11-29', {
10
- get: function get() {
11
- var model = require('../apis/neptune-graph-2023-11-29.min.json');
12
- model.paginators = require('../apis/neptune-graph-2023-11-29.paginators.json').pagination;
13
- model.waiters = require('../apis/neptune-graph-2023-11-29.waiters2.json').waiters;
14
- return model;
15
- },
16
- enumerable: true,
17
- configurable: true
18
- });
19
-
20
- module.exports = AWS.NeptuneGraph;
@@ -1,14 +0,0 @@
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
- };