cdk-comprehend-s3olap 2.0.5 → 2.0.8

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 (32) hide show
  1. package/.jsii +3 -3
  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 +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/budgets-2016-10-20.min.json +53 -53
  8. package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +105 -48
  9. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +146 -143
  10. package/node_modules/aws-sdk/apis/metadata.json +0 -4
  11. package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +67 -0
  12. package/node_modules/aws-sdk/clients/all.d.ts +0 -1
  13. package/node_modules/aws-sdk/clients/all.js +1 -2
  14. package/node_modules/aws-sdk/clients/budgets.d.ts +2 -1
  15. package/node_modules/aws-sdk/clients/frauddetector.d.ts +5 -5
  16. package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +69 -2
  17. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +6 -1
  18. package/node_modules/aws-sdk/clients/outposts.d.ts +94 -0
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +17 -9
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +38 -59
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +18 -14
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
  23. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +0 -2
  24. package/node_modules/aws-sdk/lib/core.js +1 -1
  25. package/node_modules/aws-sdk/lib/util.js +15 -7
  26. package/node_modules/aws-sdk/package.json +1 -1
  27. package/package.json +5 -5
  28. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.examples.json +0 -5
  29. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +0 -1206
  30. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +0 -40
  31. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +0 -1525
  32. package/node_modules/aws-sdk/clients/redshiftserverless.js +0 -18
@@ -308,7 +308,6 @@ export abstract class ConfigurationServicePlaceholders {
308
308
  chimesdkmediapipelines?: AWS.ChimeSDKMediaPipelines.Types.ClientConfiguration;
309
309
  emrserverless?: AWS.EMRServerless.Types.ClientConfiguration;
310
310
  m2?: AWS.M2.Types.ClientConfiguration;
311
- redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
312
311
  }
313
312
  export interface ConfigurationServiceApiVersions {
314
313
  acm?: AWS.ACM.Types.apiVersion;
@@ -619,5 +618,4 @@ export interface ConfigurationServiceApiVersions {
619
618
  chimesdkmediapipelines?: AWS.ChimeSDKMediaPipelines.Types.apiVersion;
620
619
  emrserverless?: AWS.EMRServerless.Types.apiVersion;
621
620
  m2?: AWS.M2.Types.apiVersion;
622
- redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
623
621
  }
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1152.0',
23
+ VERSION: '2.1154.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -215,20 +215,28 @@ var util = {
215
215
  parse: function string(ini) {
216
216
  var currentSection, map = {};
217
217
  util.arrayEach(ini.split(/\r?\n/), function(line) {
218
- line = line.split(/(^|\s)[;#]/)[0]; // remove comments
219
- var section = line.match(/^\s*\[([^\[\]]+)\]\s*$/);
220
- if (section) {
221
- currentSection = section[1];
218
+ line = line.split(/(^|\s)[;#]/)[0].trim(); // remove comments and trim
219
+ var isSection = line[0] === '[' && line[line.length - 1] === ']';
220
+ if (isSection) {
221
+ currentSection = line.substring(1, line.length - 1);
222
222
  if (currentSection === '__proto__' || currentSection.split(/\s/)[1] === '__proto__') {
223
223
  throw util.error(
224
224
  new Error('Cannot load profile name \'' + currentSection + '\' from shared ini file.')
225
225
  );
226
226
  }
227
227
  } else if (currentSection) {
228
- var item = line.match(/^\s*(.+?)\s*=\s*(.+?)\s*$/);
229
- if (item) {
228
+ var indexOfEqualsSign = line.indexOf('=');
229
+ var start = 0;
230
+ var end = line.length - 1;
231
+ var isAssignment =
232
+ indexOfEqualsSign !== -1 && indexOfEqualsSign !== start && indexOfEqualsSign !== end;
233
+
234
+ if (isAssignment) {
235
+ var name = line.substring(0, indexOfEqualsSign).trim();
236
+ var value = line.substring(indexOfEqualsSign + 1).trim();
237
+
230
238
  map[currentSection] = map[currentSection] || {};
231
- map[currentSection][item[1]] = item[2];
239
+ map[currentSection][name] = value;
232
240
  }
233
241
  }
234
242
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1152.0",
4
+ "version": "2.1154.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
package/package.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "@types/node": "^14",
45
45
  "@typescript-eslint/eslint-plugin": "^5",
46
46
  "@typescript-eslint/parser": "^5",
47
- "aws-cdk-lib": "^2.27.0",
47
+ "aws-cdk-lib": "^2.28.0",
48
48
  "constructs": "^10.0.5",
49
49
  "esbuild": "^0.14.43",
50
50
  "eslint": "^8",
@@ -59,7 +59,7 @@
59
59
  "jsii-pacmak": "^1.60.1",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^12",
62
- "projen": "^0.58.6",
62
+ "projen": "^0.58.13",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.7.3"
@@ -69,8 +69,8 @@
69
69
  "constructs": "^10.0.5"
70
70
  },
71
71
  "dependencies": {
72
- "aws-cdk-lib": "^2.27.0",
73
- "aws-sdk": "^2.1152.0",
72
+ "aws-cdk-lib": "^2.28.0",
73
+ "aws-sdk": "^2.1154.0",
74
74
  "constructs": "^10.0.5",
75
75
  "esbuild": "^0.14.43"
76
76
  },
@@ -92,7 +92,7 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.5",
95
+ "version": "2.0.8",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }