cdk-comprehend-s3olap 2.0.20 → 2.0.23

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 (42) 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 +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +39 -24
  8. package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +144 -69
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +711 -707
  10. package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +131 -128
  11. package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +58 -3
  12. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +269 -234
  13. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  14. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.examples.json +5 -0
  15. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +1206 -0
  16. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +40 -0
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +253 -103
  18. package/node_modules/aws-sdk/apis/translate-2017-07-01.min.json +33 -0
  19. package/node_modules/aws-sdk/apis/translate-2017-07-01.paginators.json +5 -0
  20. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  21. package/node_modules/aws-sdk/clients/all.js +2 -1
  22. package/node_modules/aws-sdk/clients/appstream.d.ts +22 -3
  23. package/node_modules/aws-sdk/clients/datasync.d.ts +133 -38
  24. package/node_modules/aws-sdk/clients/ec2.d.ts +33 -21
  25. package/node_modules/aws-sdk/clients/elbv2.d.ts +10 -10
  26. package/node_modules/aws-sdk/clients/emr.d.ts +8 -3
  27. package/node_modules/aws-sdk/clients/finspacedata.d.ts +64 -3
  28. package/node_modules/aws-sdk/clients/medialive.d.ts +41 -3
  29. package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
  30. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
  31. package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
  32. package/node_modules/aws-sdk/clients/sagemaker.d.ts +245 -4
  33. package/node_modules/aws-sdk/clients/translate.d.ts +70 -18
  34. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
  36. package/node_modules/aws-sdk/dist/aws-sdk.js +888 -839
  37. package/node_modules/aws-sdk/dist/aws-sdk.min.js +67 -67
  38. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/lib/s3/managed_upload.js +1 -1
  41. package/node_modules/aws-sdk/package.json +1 -1
  42. package/package.json +3 -3
@@ -309,6 +309,7 @@ export abstract class ConfigurationServicePlaceholders {
309
309
  emrserverless?: AWS.EMRServerless.Types.ClientConfiguration;
310
310
  m2?: AWS.M2.Types.ClientConfiguration;
311
311
  connectcampaigns?: AWS.ConnectCampaigns.Types.ClientConfiguration;
312
+ redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
312
313
  }
313
314
  export interface ConfigurationServiceApiVersions {
314
315
  acm?: AWS.ACM.Types.apiVersion;
@@ -620,4 +621,5 @@ export interface ConfigurationServiceApiVersions {
620
621
  emrserverless?: AWS.EMRServerless.Types.apiVersion;
621
622
  m2?: AWS.M2.Types.apiVersion;
622
623
  connectcampaigns?: AWS.ConnectCampaigns.Types.apiVersion;
624
+ redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
623
625
  }
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1162.0',
23
+ VERSION: '2.1165.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -574,7 +574,7 @@ AWS.S3.ManagedUpload = AWS.util.inherit({
574
574
  if (self.completeInfo[partNumber] && self.completeInfo[partNumber].ETag !== null) return null;
575
575
  partInfo.ETag = data.ETag;
576
576
  self.doneParts++;
577
- if (self.isDoneChunking && self.doneParts === self.numParts) {
577
+ if (self.isDoneChunking && self.doneParts === self.totalPartNumbers) {
578
578
  self.finishMultiPart();
579
579
  } else {
580
580
  self.fillQueue.call(self);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1162.0",
4
+ "version": "2.1165.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
package/package.json CHANGED
@@ -59,7 +59,7 @@
59
59
  "jsii-pacmak": "^1.61.0",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^12",
62
- "projen": "^0.58.17",
62
+ "projen": "^0.58.21",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.7.4"
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "aws-cdk-lib": "^2.29.1",
73
- "aws-sdk": "^2.1162.0",
73
+ "aws-sdk": "^2.1165.0",
74
74
  "constructs": "^10.0.5",
75
75
  "esbuild": "^0.14.47"
76
76
  },
@@ -92,7 +92,7 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.20",
95
+ "version": "2.0.23",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",