cdk-lambda-subminute 2.0.304 → 2.0.306

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 (45) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.examples.json +251 -0
  6. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +349 -106
  7. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
  10. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
  11. package/node_modules/aws-sdk/apis/codestar-connections-2019-12-01.min.json +3 -590
  12. package/node_modules/aws-sdk/apis/codestar-connections-2019-12-01.paginators.json +0 -10
  13. package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +14 -7
  14. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1448 -1435
  15. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.examples.json +174 -0
  16. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.min.json +51 -0
  17. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.paginators.json +4 -0
  18. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +989 -176
  19. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +24 -0
  20. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +729 -131
  21. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
  22. package/node_modules/aws-sdk/apis/metadata.json +8 -0
  23. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +152 -152
  24. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +109 -92
  25. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  26. package/node_modules/aws-sdk/clients/all.js +3 -1
  27. package/node_modules/aws-sdk/clients/cloudfront.d.ts +220 -2
  28. package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.d.ts +294 -0
  29. package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.js +18 -0
  30. package/node_modules/aws-sdk/clients/codestarconnections.d.ts +0 -727
  31. package/node_modules/aws-sdk/clients/docdb.d.ts +28 -0
  32. package/node_modules/aws-sdk/clients/ec2.d.ts +49 -20
  33. package/node_modules/aws-sdk/clients/inspectorscan.d.ts +59 -0
  34. package/node_modules/aws-sdk/clients/inspectorscan.js +18 -0
  35. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +1080 -179
  36. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +666 -9
  37. package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
  38. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  39. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +89 -15
  40. package/node_modules/aws-sdk/dist/aws-sdk.js +1956 -1638
  41. package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -92
  42. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  43. package/node_modules/aws-sdk/lib/core.js +1 -1
  44. package/node_modules/aws-sdk/package.json +1 -1
  45. package/package.json +3 -3
@@ -359,6 +359,8 @@ export abstract class ConfigurationServicePlaceholders {
359
359
  datazone?: AWS.DataZone.Types.ClientConfiguration;
360
360
  launchwizard?: AWS.LaunchWizard.Types.ClientConfiguration;
361
361
  trustedadvisor?: AWS.TrustedAdvisor.Types.ClientConfiguration;
362
+ cloudfrontkeyvaluestore?: AWS.CloudFrontKeyValueStore.Types.ClientConfiguration;
363
+ inspectorscan?: AWS.InspectorScan.Types.ClientConfiguration;
362
364
  }
363
365
  export interface ConfigurationServiceApiVersions {
364
366
  acm?: AWS.ACM.Types.apiVersion;
@@ -720,4 +722,6 @@ export interface ConfigurationServiceApiVersions {
720
722
  datazone?: AWS.DataZone.Types.apiVersion;
721
723
  launchwizard?: AWS.LaunchWizard.Types.apiVersion;
722
724
  trustedadvisor?: AWS.TrustedAdvisor.Types.apiVersion;
725
+ cloudfrontkeyvaluestore?: AWS.CloudFrontKeyValueStore.Types.apiVersion;
726
+ inspectorscan?: AWS.InspectorScan.Types.apiVersion;
723
727
  }
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1499.0',
23
+ VERSION: '2.1501.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1499.0",
4
+ "version": "2.1501.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
package/package.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "@typescript-eslint/eslint-plugin": "^6",
45
45
  "@typescript-eslint/parser": "^6",
46
46
  "aws-cdk-lib": "^2.95.0",
47
- "esbuild": "^0.19.6",
47
+ "esbuild": "^0.19.7",
48
48
  "eslint": "^8",
49
49
  "eslint-import-resolver-typescript": "^2.7.1",
50
50
  "eslint-plugin-import": "^2.29.0",
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "aws-cdk-lib": "^2.95.0",
71
- "aws-sdk": "^2.1499.0",
71
+ "aws-sdk": "^2.1501.0",
72
72
  "constructs": "^10.0.5"
73
73
  },
74
74
  "bundledDependencies": [
@@ -90,7 +90,7 @@
90
90
  ],
91
91
  "main": "lib/index.js",
92
92
  "license": "Apache-2.0",
93
- "version": "2.0.304",
93
+ "version": "2.0.306",
94
94
  "jest": {
95
95
  "testMatch": [
96
96
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",