cdk-comprehend-s3olap 2.0.342 → 2.0.344

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 (48) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.examples.json +251 -0
  8. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +349 -106
  9. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
  11. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
  12. package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
  13. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.examples.json +174 -0
  14. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.min.json +51 -0
  15. package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.paginators.json +4 -0
  16. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +989 -176
  17. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +24 -0
  18. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +729 -131
  19. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
  20. package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +92 -21
  21. package/node_modules/aws-sdk/apis/metadata.json +8 -0
  22. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +152 -152
  23. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +109 -92
  24. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +112 -84
  25. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +544 -533
  26. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  27. package/node_modules/aws-sdk/clients/all.js +3 -1
  28. package/node_modules/aws-sdk/clients/cloudfront.d.ts +220 -2
  29. package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.d.ts +294 -0
  30. package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.js +18 -0
  31. package/node_modules/aws-sdk/clients/ec2.d.ts +12 -12
  32. package/node_modules/aws-sdk/clients/inspectorscan.d.ts +59 -0
  33. package/node_modules/aws-sdk/clients/inspectorscan.js +18 -0
  34. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +1080 -179
  35. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +666 -9
  36. package/node_modules/aws-sdk/clients/kinesis.d.ts +96 -42
  37. package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
  38. package/node_modules/aws-sdk/clients/s3control.d.ts +35 -3
  39. package/node_modules/aws-sdk/clients/sagemaker.d.ts +13 -2
  40. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  41. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +89 -15
  42. package/node_modules/aws-sdk/dist/aws-sdk.js +601 -225
  43. package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -92
  44. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  45. package/node_modules/aws-sdk/lib/core.js +1 -1
  46. package/node_modules/aws-sdk/lib/services/s3.js +1 -1
  47. package/node_modules/aws-sdk/package.json +1 -1
  48. package/package.json +5 -6
@@ -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.1500.0',
23
+ VERSION: '2.1502.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -278,7 +278,7 @@ AWS.util.update(AWS.S3.prototype, {
278
278
  req.httpRequest.endpoint.hostname.indexOf('s3.amazonaws.com') >= 0
279
279
  ) {
280
280
  var insertPoint = config.endpoint.indexOf('.amazonaws.com');
281
- regionalEndpoint = config.endpoint.substring(0, insertPoint) +
281
+ var regionalEndpoint = config.endpoint.substring(0, insertPoint) +
282
282
  '.us-east-1' + config.endpoint.substring(insertPoint);
283
283
  req.httpRequest.updateEndpoint(regionalEndpoint);
284
284
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1500.0",
4
+ "version": "2.1502.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.93.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",
@@ -55,8 +55,7 @@
55
55
  "jsii-docgen": "^1.8.110",
56
56
  "jsii-pacmak": "^1.92.0",
57
57
  "jsii-rosetta": "1.x",
58
- "npm-check-updates": "^16",
59
- "projen": "^0.77.1",
58
+ "projen": "^0.77.2",
60
59
  "standard-version": "^9",
61
60
  "ts-jest": "^27",
62
61
  "typescript": "^4.9.5"
@@ -67,9 +66,9 @@
67
66
  },
68
67
  "dependencies": {
69
68
  "aws-cdk-lib": "^2.93.0",
70
- "aws-sdk": "^2.1500.0",
69
+ "aws-sdk": "^2.1502.0",
71
70
  "constructs": "^10.0.5",
72
- "esbuild": "^0.19.6"
71
+ "esbuild": "^0.19.7"
73
72
  },
74
73
  "bundledDependencies": [
75
74
  "aws-sdk",
@@ -94,7 +93,7 @@
94
93
  ],
95
94
  "main": "lib/index.js",
96
95
  "license": "Apache-2.0",
97
- "version": "2.0.342",
96
+ "version": "2.0.344",
98
97
  "jest": {
99
98
  "testMatch": [
100
99
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",