cdk-comprehend-s3olap 2.0.88 → 2.0.89

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 +11 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
  9. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
  10. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
  11. package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
  12. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
  13. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +547 -538
  14. package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
  15. package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
  16. package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  18. package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
  19. package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
  20. package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
  21. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
  22. package/node_modules/aws-sdk/clients/sagemaker.d.ts +15 -0
  23. package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
  24. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  25. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +750 -743
  26. package/node_modules/aws-sdk/dist/aws-sdk.js +45 -13
  27. package/node_modules/aws-sdk/dist/aws-sdk.min.js +19 -19
  28. package/node_modules/aws-sdk/lib/core.js +1 -1
  29. package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
  30. package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
  31. package/node_modules/aws-sdk/package.json +1 -1
  32. package/package.json +5 -5
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1210.0',
23
+ VERSION: '2.1211.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,5 +1,6 @@
1
1
  import {Credentials} from '../credentials';
2
2
  import SSO = require('../../clients/sso');
3
+ import { HTTPOptions } from '../config-base';
3
4
  export class SsoCredentials extends Credentials {
4
5
  /**
5
6
  * Creates a new SsoCredentials object.
@@ -8,6 +9,7 @@ export class SsoCredentials extends Credentials {
8
9
  }
9
10
 
10
11
  interface SsoCredentialsOptions {
12
+ httpOptions?: HTTPOptions,
11
13
  profile?: string;
12
14
  filename?: string;
13
15
  ssoClient?: SSO;
@@ -60,6 +60,7 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
60
60
  this.filename = options.filename;
61
61
  this.profile = options.profile || process.env.AWS_PROFILE || AWS.util.defaultProfile;
62
62
  this.service = options.ssoClient;
63
+ this.httpOptions = options.httpOptions || null;
63
64
  this.get(options.callback || AWS.util.fn.noop);
64
65
  },
65
66
 
@@ -130,7 +131,10 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
130
131
  }
131
132
 
132
133
  if (!self.service || self.service.config.region !== profile.sso_region) {
133
- self.service = new AWS.SSO({ region: profile.sso_region });
134
+ self.service = new AWS.SSO({
135
+ region: profile.sso_region,
136
+ httpOptions: this.httpOptions,
137
+ });
134
138
  }
135
139
  var request = {
136
140
  accessToken: cacheContent.accessToken,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1210.0",
4
+ "version": "2.1211.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.40.0",
47
+ "aws-cdk-lib": "^2.41.0",
48
48
  "constructs": "^10.0.5",
49
49
  "esbuild": "^0.15.7",
50
50
  "eslint": "^8",
@@ -59,7 +59,7 @@
59
59
  "jsii-pacmak": "^1.67.0",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^15",
62
- "projen": "^0.61.45",
62
+ "projen": "^0.61.46",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.8.2"
@@ -69,8 +69,8 @@
69
69
  "constructs": "^10.0.5"
70
70
  },
71
71
  "dependencies": {
72
- "aws-cdk-lib": "^2.40.0",
73
- "aws-sdk": "^2.1210.0",
72
+ "aws-cdk-lib": "^2.41.0",
73
+ "aws-sdk": "^2.1211.0",
74
74
  "constructs": "^10.0.5",
75
75
  "esbuild": "^0.15.7"
76
76
  },
@@ -92,7 +92,7 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.88",
95
+ "version": "2.0.89",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",